diff --git a/juriscraper/opinions/united_states/state/or.py b/juriscraper/opinions/united_states/state/or.py index 9bd1d941c..1dbc8de23 100644 --- a/juriscraper/opinions/united_states/state/or.py +++ b/juriscraper/opinions/united_states/state/or.py @@ -4,15 +4,124 @@ - 2023-11-18: Fixed and updated """ -from juriscraper.opinions.united_states.state import orctapp +from datetime import datetime, timedelta +from juriscraper.AbstractSite import logger +from juriscraper.OpinionSiteLinear import OpinionSiteLinear + + +class Site(OpinionSiteLinear): + court_code = "p17027coll3" + base_url = "https://cdm17027.contentdm.oclc.org/digital/api/search/collection/{}/searchterm/{}-{}/field/dated/mode/exact/conn/and/maxRecords/200" + # technically they have an 1870 case but just one + first_opinion_date = datetime(1997, 8, 12) + days_interval = 15 -class Site(orctapp.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ - self.url = ( - "https://www.courts.oregon.gov/publications/sc/Pages/default.aspx" - ) - self.status = "Published" - self.court_code = "p17027coll3" + today = datetime.today() + self.url = self.format_url(today - timedelta(15), today) + self.make_backscrape_iterable(kwargs) + + def _process_html(self): + for row in self.html["items"]: + docket, name, citation, date = ( + x["value"] for x in row["metadataFields"] + ) + if not name: + # Happens on rows like: + # "Miscellaneous Supreme Court dispositions, June 10 and 13, 2024" + logger.info("Skipping row '%s'", docket) + continue + + judge, disposition, status, lower_court_number = self.get_details( + row + ) + per_curiam = False + if judge and judge == "PC" or "per curiam" in judge.lower(): + per_curiam = True + judge = "" + + self.cases.append( + { + "name": name, + "date": date, + "docket": docket.split(",")[0], + "url": f"https://ojd.contentdm.oclc.org/digital/api/collection/{row['collectionAlias']}/id/{row['itemId']}/download", + "citation": citation, + "judge": judge, + "per_curiam": per_curiam, + "status": status, + "disposition": disposition, + "lower_court_number": lower_court_number, + } + ) + + def get_details(self, row: dict) -> tuple[str, str, str, str]: + """Makes a secondary request to get details for a single + opinion + + :param row: the JSON records, to get the item id for the request + or the JSON object in tests + :return: a tuple containing, if it has a valid value + - judge + - disposition + - status + - lower court number (only for `or`) + """ + if self.test_mode_enabled(): + if not row.get("detailJson"): + return ( + "placeholder judge", + "placeholder disposition", + "Unknown", + "placeholder lower court number", + ) + # Some test cases have their detail data manually copy pasted + json = row["detailJson"] + else: + item_id = row["itemId"] + url = f"https://cdm17027.contentdm.oclc.org/digital/api/collections/{self.court_code}/items/{item_id}/false" + json = self.request["session"].get(url).json() + logger.debug("Getting detail JSON from %s", url) + + if len(json["fields"]) == 1: + fields = json["parent"]["fields"] + else: + fields = json["fields"] + + judge, disposition, status, lower_court_number = "", "", "Unknown", "" + for field in fields: + if field["key"] == "judge": + judge = field["value"] + elif field["key"] == "type": + if field["value"] == "Nonprecedential opinion": + status = "Unpublished" + else: + status = "Published" + elif field["key"] == "descri": + disposition = field["value"] + elif field["key"] == "relhapt": + # For orctapp this field may be populated with consolidated docket + # numbers + if self.court_id.endswith("or") and not field[ + "value" + ].startswith("S"): + lower_court_number = field["value"] + + return judge, disposition, status, lower_court_number + + def _download_backwards(self, dates: tuple) -> None: + logger.info("Backscraping for range %s %s", *dates) + self.url = self.format_url(*dates) + self.html = self._download() + self._process_html() + + def format_url(self, start_date: datetime, end_date: datetime) -> str: + """ + Creates a date range URL by formatting input dates + """ + start = datetime.strftime(start_date, "%Y%m%d") + end = datetime.strftime(end_date, "%Y%m%d") + return self.base_url.format(self.court_code, start, end) diff --git a/juriscraper/opinions/united_states/state/orctapp.py b/juriscraper/opinions/united_states/state/orctapp.py index d2aadf4fa..be9afd0c9 100644 --- a/juriscraper/opinions/united_states/state/orctapp.py +++ b/juriscraper/opinions/united_states/state/orctapp.py @@ -7,62 +7,14 @@ - 2023-11-18: Created """ -from juriscraper.DeferringList import DeferringList -from juriscraper.OpinionSiteLinear import OpinionSiteLinear +from importlib import import_module +# `or` is a python reserved keyword; can't import the module as usual +oregon_module = import_module("juriscraper.opinions.united_states.state.or") -class Site(OpinionSiteLinear): - def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self.court_id = self.__module__ - self.url = ( - "https://www.courts.oregon.gov/publications/coa/Pages/default.aspx" - ) - self.cases = [] - self.status = "Published" - self.court_code = "p17027coll5" - - def fetch_url_json(self, identifier): - """""" - url = f"https://ojd.contentdm.oclc.org/digital/bl/dmwebservices/index.php?q=dmQuery/{self.court_code}/identi^{identifier}^all^and/title!subjec!descri!dmrecord/title/1024/1/0/0/0/0/json" - json = self.request["session"].get(url).json() - return f"https://ojd.contentdm.oclc.org/digital/api/collection/{self.court_code}/id/{json['records'][0]['pointer']}/download" - - def _process_html(self): - for header in self.html.xpath("//h4//a/parent::h4"): - date_string = header.text_content().strip() - if not date_string: - continue - ul = header.xpath("./following-sibling::ul")[0] - for item in ul.xpath(".//li"): - # Ensure two links are present (skip Petitions for Review rows) - # see or_example_2.html - anchors = item.xpath(".//a") - if not (len(anchors) > 1): - continue - text = item.text_content().strip() - url = anchors[0].xpath("./@href")[0] - docket = anchors[1].text_content().strip() - name = text.split(")", 1)[-1] - self.cases.append( - { - "date": date_string, - "name": name, - "docket": docket, - "url": url, - } - ) - - def _get_download_urls(self): - """Get download urls - :return: List URLs - """ +class Site(oregon_module.Site): + court_code = "p17027coll5" - def fetcher(case): - if self.test_mode_enabled(): - return case["url"] - - return self.fetch_url_json(case["url"].split("=")[-1][:-4]) - - return DeferringList(seed=self.cases, fetcher=fetcher) + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) 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 index ea0877015..a311026ce 100644 --- a/tests/examples/opinions/united_states/orctapp_example.compare.json +++ b/tests/examples/opinions/united_states/orctapp_example.compare.json @@ -1,1802 +1,1487 @@ [ { - "case_dates": "2023-11-15", - "case_names": "Taylor v. SAIF", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176262.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176262", - "case_name_shorts": "Taylor" - }, - { - "case_dates": "2023-11-15", - "case_names": "State v. Stevens", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176619.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176619", - "case_name_shorts": "Stevens" - }, - { - "case_dates": "2023-11-15", - "case_names": "State v. Petrie", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176222.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176222", - "case_name_shorts": "Petrie" - }, - { - "case_dates": "2023-11-15", - "case_names": "State v. Gonzales", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176611.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176611", - "case_name_shorts": "" - }, - { - "case_dates": "2023-11-15", - "case_names": "Noor and Chowdhury", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177261.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177261", - "case_name_shorts": "Noor and Chowdhury" - }, - { - "case_dates": "2023-11-15", - "case_names": "J. S. v. Hudgins", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179952.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179952", - "case_name_shorts": "Hudgins" - }, - { - "case_dates": "2023-11-08", - "case_names": "Wright v. PERS", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177832.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177832", - "case_name_shorts": "Wright" - }, - { - "case_dates": "2023-11-08", - "case_names": "Watson v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174076.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174076", - "case_name_shorts": "Watson" - }, - { - "case_dates": "2023-11-08", - "case_names": "State v. Peterson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175984.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175984", - "case_name_shorts": "Peterson" - }, - { - "case_dates": "2023-11-08", - "case_names": "State v. Johnson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177356.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177356", - "case_name_shorts": "" - }, - { - "case_dates": "2023-11-08", - "case_names": "State v. Dye", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177666.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177666", - "case_name_shorts": "Dye" - }, - { - "case_dates": "2023-11-08", - "case_names": "Sohappy v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174855.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174855", - "case_name_shorts": "Sohappy" - }, - { - "case_dates": "2023-11-08", - "case_names": "Lewis-Taylor v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176795.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176795", - "case_name_shorts": "Lewis-Taylor" - }, - { - "case_dates": "2023-11-01", - "case_names": "Wasson v. Fagan", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179573.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179573", - "case_name_shorts": "Wasson" - }, - { - "case_dates": "2023-11-01", - "case_names": "Kristof v. Mealey", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178517.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178517", - "case_name_shorts": "Kristof" - }, - { - "case_dates": "2023-11-01", - "case_names": "East Valley Water v. Water Resources Commission", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173292.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A173292", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-25", - "case_names": "State v. Winter", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176083.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176083", - "case_name_shorts": "Winter" - }, - { - "case_dates": "2023-10-25", - "case_names": "State v. J. R. S.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179630.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179630", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-25", - "case_names": "State v. A. O.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178476A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178476", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-25", - "case_names": "Dept. of Human Services v. J. L. M.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180845.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180845", - "case_name_shorts": "" + "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": "2023-10-25", - "case_names": "Dept. of Human Services v. J. A. G.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180886.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A180886", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-25", - "case_names": "Dept. of Human Services v. B. B.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179897.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179897", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-18", - "case_names": "State v. Tejeda-Serrano", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177070.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177070", - "case_name_shorts": "Tejeda-Serrano" - }, - { - "case_dates": "2023-10-18", - "case_names": "State v. Schneider", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176556.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176556", - "case_name_shorts": "Schneider" + "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": "2023-10-18", - "case_names": "State v. Peck", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176773.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176773", - "case_name_shorts": "Peck" - }, - { - "case_dates": "2023-10-18", - "case_names": "State v. Civil", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175546.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175546", - "case_name_shorts": "Civil" - }, - { - "case_dates": "2023-10-18", - "case_names": "State v. Boyar", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176596.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176596", - "case_name_shorts": "Boyar" - }, - { - "case_dates": "2023-10-18", - "case_names": "Newman v. Marion County Sheriff's Office", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177996.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177996", - "case_name_shorts": "Newman" - }, - { - "case_dates": "2023-10-11", - "case_names": "Yocum and Pockett", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178935.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178935", - "case_name_shorts": "Yocum and Pockett" - }, - { - "case_dates": "2023-10-11", - "case_names": "State v. Traylor", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173795.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A173795", - "case_name_shorts": "Traylor" - }, - { - "case_dates": "2023-10-11", - "case_names": "Manchester Solar, LLC v. Yamhill County", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A181678.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A181678", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-11", - "case_names": "Gilbride v. Smith", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175822.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175822", - "case_name_shorts": "Gilbride" - }, - { - "case_dates": "2023-10-11", - "case_names": "Final Table, LLC v. Acceptance Casualty Ins. Co.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176545.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176545", - "case_name_shorts": "" - }, - { - "case_dates": "2023-10-11", - "case_names": "Dept. of Human Services v. L. N. S.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180424.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A180424", - "case_name_shorts": "" - }, - { - "case_dates": "2023-09-27", - "case_names": "Thomas Creek Lumber v. Dept. of Forestry", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A167397.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A167397", - "case_name_shorts": "" - }, - { - "case_dates": "2023-09-27", - "case_names": "State v. McIntire", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175345.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175345", - "case_name_shorts": "McIntire" - }, - { - "case_dates": "2023-09-27", - "case_names": "State v. Keck", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174471.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174471", - "case_name_shorts": "Keck" - }, - { - "case_dates": "2023-09-27", - "case_names": "State v. Joseph", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174920.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174920", - "case_name_shorts": "Joseph" - }, - { - "case_dates": "2023-09-27", - "case_names": "State v. Johnson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175405.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175405", - "case_name_shorts": "" + "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": "2023-09-27", - "case_names": "Moore v. Portland Public Schools", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173665.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173665", - "case_name_shorts": "Moore" + "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": "2023-09-27", - "case_names": "M. C. v. Quest Global, Inc.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176038.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176038", - "case_name_shorts": "" + "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": "2023-09-27", - "case_names": "Hofer v. OHSU", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A172328A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A172328", - "case_name_shorts": "Hofer" + "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": "2023-09-27", - "case_names": "Doe v. First Christian Church of The Dalles", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173412.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173412", - "case_name_shorts": "Doe" + "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": "2023-09-27", - "case_names": "Dept. of Human Services v. R. F.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180340.pdf", + "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, - "docket_numbers": "A180340", - "case_name_shorts": "" + "dispositions": "Affirmed.", + "docket_numbers": "A179482", + "judges": "Tookey", + "lower_court_numbers": "", + "citations": "335 Or App 373", + "case_name_shorts": "Carmello", + "per_curiam": false }, { - "case_dates": "2023-09-20", - "case_names": "Woods v. Hendricks", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178703.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178703", - "case_name_shorts": "Woods" - }, - { - "case_dates": "2023-09-20", - "case_names": "State v. Stone", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177223A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177223", - "case_name_shorts": "" + "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": "2023-09-20", - "case_names": "State v. Santini", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176654.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176654", - "case_name_shorts": "Santini" + "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": "2023-09-20", - "case_names": "State v. H. D.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180733.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180733", - "case_name_shorts": "" + "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": "2023-09-20", - "case_names": "State v. Coy", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179312.pdf", + "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, - "docket_numbers": "A179312", - "case_name_shorts": "Coy" + "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": "2023-09-20", - "case_names": "State v. Clyde", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176269.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176269", - "case_name_shorts": "Clyde" + "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": "2023-09-20", - "case_names": "Dept. of Human Services v. A. C. S. G.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179158.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A179158", - "case_name_shorts": "" + "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": "2023-09-13", - "case_names": "Wall v. Ash", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175911.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175911", - "case_name_shorts": "Wall" + "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": "2023-09-13", - "case_names": "State v. Sell", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176091.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176091", - "case_name_shorts": "Sell" + "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": "2023-09-13", - "case_names": "State v. Cannon", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176436.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176436", - "case_name_shorts": "Cannon" + "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": "2023-09-13", - "case_names": "Snodgrass v. Miller", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176748.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176748", - "case_name_shorts": "Snodgrass" + "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": "2023-09-13", - "case_names": "Ricard v. Klamath Falls Forest Estates HOA", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176668.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176668", - "case_name_shorts": "Ricard" + "dispositions": "Affirmed.", + "docket_numbers": "A181792", + "judges": "Egan", + "lower_court_numbers": "", + "citations": "335 Or App 407", + "case_name_shorts": "Artunyan", + "per_curiam": false }, { - "case_dates": "2023-09-13", - "case_names": "Peeler v. Reyes", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178342.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A178342", - "case_name_shorts": "Peeler" + "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": "2023-09-13", - "case_names": "ODOT v. Pacific Indemnity Co.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175985.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175985", - "case_name_shorts": "ODOT" + "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": "2023-09-13", - "case_names": "Newton v. Kelly", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177335.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177335", - "case_name_shorts": "Newton" + "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": "2023-09-13", - "case_names": "Martin v. Kelly", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177158.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177158", - "case_name_shorts": "Martin" + "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": "2023-09-13", - "case_names": "Hanson Joint Revocable Living Trust v. Sliger", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178327.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A178327", - "case_name_shorts": "Sliger" + "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": "2023-09-13", - "case_names": "Dept. of Human Services v. C. E. S.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180562.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180562", - "case_name_shorts": "" + "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": "2023-09-13", - "case_names": "Buchanan and Buchanan", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177872.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177872", - "case_name_shorts": "Buchanan and Buchanan" + "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": "2023-08-30", - "case_names": "State v. Rose", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178325.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A178325", - "case_name_shorts": "Rose" + "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": "2023-08-30", - "case_names": "State v. Montgomery", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176205.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176205", - "case_name_shorts": "" + "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": "2023-08-30", - "case_names": "Mayes v. Ramos", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A172429.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A172429", - "case_name_shorts": "Mayes" + "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": "2023-08-30", - "case_names": "Dept. of Human Services v. T. M. M.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180292.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180292", - "case_name_shorts": "" + "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": "2023-08-30", - "case_names": "Bacon v. Cain", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176246.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176246", - "case_name_shorts": "Bacon" + "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": "2023-08-16", - "case_names": "Yoshida v. Watson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175509.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175509", - "case_name_shorts": "Yoshida" + "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": "2023-08-16", - "case_names": "Wolfston v. Eastside Bend, LLC", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177019.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177019", - "case_name_shorts": "Wolfston" + "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": "2023-08-16", - "case_names": "State v. Hargrove", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173326.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173326", - "case_name_shorts": "Hargrove" + "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": "2023-08-16", - "case_names": "Johnson v. Landwatch Lane County", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180799.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180799", - "case_name_shorts": "" + "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": "2023-08-16", - "case_names": "Esquire Investments, Inc. v. Summers", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178269.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A178269", - "case_name_shorts": "Summers" + "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": "2023-08-16", - "case_names": "BA Ventures, LLC v. Farmers Ins. Exchange", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176901.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176901", - "case_name_shorts": "" + "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": "2023-08-16", - "case_names": "Albrecht v. Emmert", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173594.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173594", - "case_name_shorts": "Albrecht" + "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": "2023-08-09", - "case_names": "State v. Waldrup", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176798.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176798", - "case_name_shorts": "Waldrup" + "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": "2023-08-09", - "case_names": "State v. Pitts", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176685.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176685", - "case_name_shorts": "Pitts" + "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": "2023-08-09", - "case_names": "State v. Humphrey", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175765.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175765", - "case_name_shorts": "Humphrey" + "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": "2023-08-09", - "case_names": "State v. Durant", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177420.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177420", - "case_name_shorts": "Durant" + "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": "2023-08-09", - "case_names": "State v. Babcock", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176785.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176785", - "case_name_shorts": "Babcock" + "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": "2023-08-09", - "case_names": "Person v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174283.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174283", - "case_name_shorts": "Person" + "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": "2023-08-09", - "case_names": "City of Salem v. Stadeli", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177746.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177746", - "case_name_shorts": "Stadeli" + "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": "2023-08-09", - "case_names": "Cazun v. State of Oregon", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176252.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176252", - "case_name_shorts": "Cazun" + "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": "2023-08-09", - "case_names": "Blakeley v. Quality Loan Service Corp.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175707.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175707", - "case_name_shorts": "Blakeley" + "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": "2023-07-26", - "case_names": "State v. Horton", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177021.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177021", - "case_name_shorts": "Horton" + "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": "2023-07-26", - "case_names": "Duckworth v. Duckworth", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176530.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176530", - "case_name_shorts": "Duckworth" + "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": "2023-07-26", - "case_names": "Dept. of Human Services v. M. M.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180452.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180452", - "case_name_shorts": "" + "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": "2023-07-26", - "case_names": "Davoodian v. Rivera", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176456.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176456", - "case_name_shorts": "Davoodian" + "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": "2023-07-26", - "case_names": "D. S.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176866.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176866", - "case_name_shorts": "D. S." + "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": "2023-07-19", - "case_names": "State v. Le", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175902.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175902", - "case_name_shorts": "Le" + "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": "2023-07-19", - "case_names": "State v. Koelzer", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176393.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176393", - "case_name_shorts": "Koelzer" + "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": "2023-07-19", - "case_names": "Service Employees Int'l Union Local 503 v. U of O", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177809.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177809", - "case_name_shorts": "" + "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": "2023-07-12", + "case_dates": "2024-09-18", "case_names": "State v. Moore", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176448.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176448", - "case_name_shorts": "Moore" - }, - { - "case_dates": "2023-07-12", - "case_names": "State v. Hampton", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176937.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176937", - "case_name_shorts": "Hampton" - }, - { - "case_dates": "2023-07-12", - "case_names": "Oregon Health Authority", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179181.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179181", - "case_name_shorts": "Oregon Health Authority" - }, - { - "case_dates": "2023-07-12", - "case_names": "Kragt v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A163421A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A163421", - "case_name_shorts": "Kragt" - }, - { - "case_dates": "2023-07-12", - "case_names": "K. E. B. v. Bradley", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178936.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178936", - "case_name_shorts": "Bradley" - }, - { - "case_dates": "2023-07-12", - "case_names": "Dept. of Human Services v. C. H.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179463.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179463", - "case_name_shorts": "" - }, - { - "case_dates": "2023-07-12", - "case_names": "Coopman v. City of Eugene", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180682.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A180682", - "case_name_shorts": "Coopman" - }, - { - "case_dates": "2023-07-12", - "case_names": "Childress v. Board of Psychology", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176119.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176119", - "case_name_shorts": "Childress" - }, - { - "case_dates": "2023-07-12", - "case_names": "Calef v. Employment Dept.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176016.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176016", - "case_name_shorts": "Calef" - }, - { - "case_dates": "2023-07-06", - "case_names": "State v. Rockafellor", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176458.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176458", - "case_name_shorts": "Rockafellor" - }, - { - "case_dates": "2023-07-06", - "case_names": "State v. Little", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176593.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176593", - "case_name_shorts": "Little" - }, - { - "case_dates": "2023-07-06", - "case_names": "Rinne v. PSRB", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174602.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174602", - "case_name_shorts": "Rinne" - }, - { - "case_dates": "2023-07-06", - "case_names": "Mandell v. Miller", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177645.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177645", - "case_name_shorts": "Mandell" - }, - { - "case_dates": "2023-07-06", - "case_names": "IBEW Local 89 v. Wallan", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176604.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176604", - "case_name_shorts": "Wallan" - }, - { - "case_dates": "2023-07-06", - "case_names": "Hoover v. Industrial Scrap Corp.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176742A.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176742", - "case_name_shorts": "Hoover" - }, - { - "case_dates": "2023-07-06", - "case_names": "Fields v. City of Newport", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177242.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177242", - "case_name_shorts": "Fields" - }, - { - "case_dates": "2023-07-06", - "case_names": "DeHart v. Tofte", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177995.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177995", - "case_name_shorts": "DeHart" - }, - { - "case_dates": "2023-07-06", - "case_names": "Craven and Craven", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177706.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177706", - "case_name_shorts": "Craven and Craven" - }, - { - "case_dates": "2023-06-28", - "case_names": "Williamson v. Zielinski", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177895.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177895", - "case_name_shorts": "Williamson" - }, - { - "case_dates": "2023-06-28", - "case_names": "State v. J. H.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175034.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175034", - "case_name_shorts": "" + "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": "2023-06-28", - "case_names": "State v. Halvorson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A169687B.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A169687", - "case_name_shorts": "Halvorson" + "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": "2023-06-28", - "case_names": "State v. Gonzalez", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173971.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173971", - "case_name_shorts": "Gonzalez" + "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": "2023-06-28", - "case_names": "State v. Brosy", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174881.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174881", - "case_name_shorts": "Brosy" + "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": "2023-06-28", - "case_names": "Bellshaw v. Farmers Ins. Co.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173722.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173722", - "case_name_shorts": "Bellshaw" + "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": "2023-06-22", - "case_names": "State v. Wesley", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173334.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173334", - "case_name_shorts": "Wesley" + "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": "2023-06-22", - "case_names": "State v. Skotland", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176291.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176291", - "case_name_shorts": "Skotland" + "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": "2023-06-22", - "case_names": "Lavelle-Hayden v. Employment Dept.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177971.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177971", - "case_name_shorts": "Lavelle-Hayden" + "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": "2023-06-22", - "case_names": "Bush v. City of Prineville", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175868A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175868", - "case_name_shorts": "Bush" + "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": "2023-06-22", - "case_names": "Andlovec v. Spoto", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175537.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175537", - "case_name_shorts": "Andlovec" + "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": "2023-06-14", - "case_names": "State v. Taylor", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A168298A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A168298", - "case_name_shorts": "Taylor" + "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": "2023-06-14", - "case_names": "State v. Miles", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173923.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A173923", - "case_name_shorts": "Miles" + "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": "2023-06-14", - "case_names": "State v. M. T. F.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175638.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175638", - "case_name_shorts": "" + "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": "2023-06-14", - "case_names": "State v. Ezell", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A172723.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A172723", - "case_name_shorts": "Ezell" + "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": "2023-06-14", - "case_names": "State v. Eggers", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175078.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175078", - "case_name_shorts": "Eggers" + "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": "2023-06-14", - "case_names": "State v. D. B. O.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175938.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175938", - "case_name_shorts": "" + "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": "2023-06-14", - "case_names": "State v. Cleaver", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177908.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177908", - "case_name_shorts": "Cleaver" + "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": "2023-06-14", - "case_names": "Smith v. Johnson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176787.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176787", - "case_name_shorts": "" + "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": "2023-06-14", - "case_names": "Maltais v. PeaceHealth", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174706.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174706", - "case_name_shorts": "Maltais" + "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": "2023-06-14", - "case_names": "Dept. of Human Services v. M. G. J.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179410.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A179410", - "case_name_shorts": "" + "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": "2023-06-14", - "case_names": "Central Oregon LandWatch v. Deschutes County", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180668.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180668", - "case_name_shorts": "" + "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": "2023-06-07", - "case_names": "State v. Stone", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177223.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177223", - "case_name_shorts": "" + "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": "2023-06-07", - "case_names": "State v. Parras", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174543.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174543", - "case_name_shorts": "Parras" + "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": "2023-06-07", - "case_names": "State v. J. D. B.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175772.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175772", - "case_name_shorts": "" + "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": "2023-06-07", - "case_names": "Gramada v. SAIF", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177672.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177672", - "case_name_shorts": "Gramada" + "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": "2023-06-07", - "case_names": "Dept. of Human Services v. T. B.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179763.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A179763", - "case_name_shorts": "" + "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": "2023-06-07", - "case_names": "Curry v. Highberger", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176592.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176592", - "case_name_shorts": "Curry" + "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": "2023-06-07", - "case_names": "Botts Marsh LLC v. City of Wheeler", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A180520.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A180520", - "case_name_shorts": "" + "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": "2023-06-01", - "case_names": "Douglas County v. Fish and Wildlife Commission", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=N011096A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "N011096", - "case_name_shorts": "" + "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": "2023-05-24", - "case_names": "State v. Zamora", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174153.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174153", - "case_name_shorts": "Zamora" + "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": "2023-05-24", - "case_names": "State v. Morales", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A171443A.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A171443", - "case_name_shorts": "Morales" + "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": "2023-05-24", - "case_names": "Peabody v. SAIF", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176055.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176055", - "case_name_shorts": "Peabody" + "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": "2023-05-24", - "case_names": "Dept. of Human Services v. J. E. D. V.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178519.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A178519", - "case_name_shorts": "" + "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": "2023-05-17", - "case_names": "Wright v. Lutzi", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176985.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176985", - "case_name_shorts": "Wright" + "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": "2023-05-17", - "case_names": "State v. Williams", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175260.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175260", - "case_name_shorts": "" + "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": "2023-05-17", - "case_names": "State v. Vannoy", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175797.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175797", - "case_name_shorts": "Vannoy" + "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": "2023-05-17", - "case_names": "State v. Solis", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176285.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176285", - "case_name_shorts": "Solis" + "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": "2023-05-17", - "case_names": "State v. Clowdus", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177572.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177572", - "case_name_shorts": "Clowdus" + "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": "2023-05-17", - "case_names": "State v. Brown", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A171078.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A171078", - "case_name_shorts": "Brown" + "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": "2023-05-17", - "case_names": "KKMH Properties, LLC v. Shire", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176826.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A176826", - "case_name_shorts": "Shire" + "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": "2023-05-17", - "case_names": "A. B. A. v. Wood", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175899.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175899", - "case_name_shorts": "Wood" + "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": "2023-05-10", - "case_names": "Preble v. Centennial School Dist., No. 287", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174811.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A174811", - "case_name_shorts": "Preble" + "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": "2023-05-10", - "case_names": "M. F. v. Baker", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177203.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A177203", - "case_name_shorts": "Baker" + "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": "2023-05-10", - "case_names": "Guzek v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176059.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176059", - "case_name_shorts": "Guzek" - }, - { - "case_dates": "2023-04-26", - "case_names": "Steltz v. Cain", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175037.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175037", - "case_name_shorts": "Steltz" - }, - { - "case_dates": "2023-04-26", - "case_names": "State v. Wiltse", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175287.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175287", - "case_name_shorts": "Wiltse" - }, - { - "case_dates": "2023-04-26", - "case_names": "State v. Severson", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175640.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175640", - "case_name_shorts": "Severson" - }, - { - "case_dates": "2023-04-26", - "case_names": "State v. Priester", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A173289.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A173289", - "case_name_shorts": "Priester" - }, - { - "case_dates": "2023-04-26", - "case_names": "State v. Ovalle", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175319.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175319", - "case_name_shorts": "Ovalle" - }, - { - "case_dates": "2023-04-26", - "case_names": "State v. Baca", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A172320.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A172320", - "case_name_shorts": "Baca" - }, - { - "case_dates": "2023-04-26", - "case_names": "Sodaro v. Boyd", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174005.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174005", - "case_name_shorts": "Sodaro" - }, - { - "case_dates": "2023-04-26", - "case_names": "Sarepta Therapeutics v. Oregon Health Authority", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A171320.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A171320", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-26", - "case_names": "Giltner v. SAIF", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176021.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176021", - "case_name_shorts": "Giltner" - }, - { - "case_dates": "2023-04-12", - "case_names": "State v. Snodgrass", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175753.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175753", - "case_name_shorts": "Snodgrass" - }, - { - "case_dates": "2023-04-05", - "case_names": "State v. Redding", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174836.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174836", - "case_name_shorts": "Redding" - }, - { - "case_dates": "2023-04-05", - "case_names": "State v. Ortiz", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175738.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175738", - "case_name_shorts": "Ortiz" - }, - { - "case_dates": "2023-04-05", - "case_names": "Petix v. Gillingham", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175438.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175438", - "case_name_shorts": "Petix" - }, - { - "case_dates": "2023-04-05", - "case_names": "Dept. of Human Services v. L. B.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A178633.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A178633", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-05", - "case_names": "Davis & Galm, LLC v. Ronald A. Neve, CPA, PC", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175606.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175606", - "case_name_shorts": "" - }, - { - "case_dates": "2023-04-05", - "case_names": "Cantu v. Progressive Classic Ins. Co.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175784.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175784", - "case_name_shorts": "Cantu" - }, - { - "case_dates": "2023-03-29", - "case_names": "Sunny Oaks, Inc. v. Dept. of Human Services", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176103.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176103", - "case_name_shorts": "" - }, - { - "case_dates": "2023-03-29", - "case_names": "State v. Perez", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A176352.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A176352", - "case_name_shorts": "Perez" - }, - { - "case_dates": "2023-03-29", - "case_names": "State v. Leake", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174457.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174457", - "case_name_shorts": "Leake" - }, - { - "case_dates": "2023-03-29", - "case_names": "State v. Champagne", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175059.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175059", - "case_name_shorts": "Champagne" - }, - { - "case_dates": "2023-03-29", - "case_names": "Martin v. Dept. of Human Services", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175697.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A175697", - "case_name_shorts": "Martin" - }, - { - "case_dates": "2023-03-29", - "case_names": "Manning v. Kelly", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A174690.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A174690", - "case_name_shorts": "Manning" - }, - { - "case_dates": "2023-03-29", - "case_names": "Denning v. Board of Parole", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A177329.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A177329", - "case_name_shorts": "Denning" - }, - { - "case_dates": "2023-03-29", - "case_names": "Champion v. Employment Dept.", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A179360.pdf", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A179360", - "case_name_shorts": "Champion" - }, - { - "case_dates": "2023-03-29", - "case_names": "Bush v. City of Prineville", - "download_urls": "https://ojd.contentdm.oclc.org/digital/custom/OJDRedirect?collection=p17027coll5&identifier=A175868.pdf", - "precedential_statuses": "Published", + "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, - "docket_numbers": "A175868", - "case_name_shorts": "Bush" + "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.html b/tests/examples/opinions/united_states/orctapp_example.html deleted file mode 100644 index 0fea1b321..000000000 --- a/tests/examples/opinions/united_states/orctapp_example.html +++ /dev/null @@ -1,2002 +0,0 @@ - - - - - - - - - - - - - - - - - - - - Oregon Judicial Department : Court of Appeals Opinions : Court of Appeals Opinions : State of Oregon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - Skip to main content - - - - -
-
- - -
-

- Oregon State Flag - - An official website of the State of Oregon » - -

- -
- - -
- - Oregon Judicial Department Logo - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - -
- - - - - - - - - -
-
- - -
-
- - -

- - Court of Appeals Opinions -

-
- -
-
-
- - - - - -
- - -
- - - - - - - - - - - - -
-
-
-
-
- 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.

2023: - March, - April, - May, - June, - July, - August, - September, - October, - November

Advance Sheets 2023 # 25

- 11/15/2023

Precedential Opinions
  • 329 Or App 118 (A176619) State v. Stevens
  • 329 Or App 127 (A176222) State v. Petrie
  • 329 Or App 135 (A176262) Taylor v. SAIF
  • 329 Or App 155 (A176611) State v. Gonzales
  • 329 Or App 162 (A177261) Noor and Chowdhury
  • 329 Or App 176 (A179952) J. S. v. Hudgins
Nonprecedential Memorandum Opinions
  • 329 Or App 183 (A176485) State v. Najar
  • 329 Or App 188 (A176871) State v. Myles
  • 329 Or App 191 (A177075) State v. Edmisten
  • 329 Or App 195 (A181079) Simmons v. Miller
  • 329 Or App 197 (A178644) State v. Hoskins
  • 329 Or App 201 (A177733) State v. K. B.
  • 329 Or App 205 (A176610) State v. Rychard
  • 329 Or App 209 (A175163) State v. St. Jeor
  • 329 Or App 216 (A178379) Higley and Higley
  • 329 Or App 220 (A179953) J. S. v. Hudgins
  • 329 Or App 222 (A180760) Dept. of Human Services v. J. J.
  • 329 Or App 226 (A181287) Johnson v. Miller
Cases Affirmed Without Opinion

- 329 Or App ___

  • A176766 Ayala-Galvan, Andres v. Reyes
  • A178372 In the Matter of A. V. M., Jr., a Youth. State v. A. V. M., Jr.
  • A181194 In the Matter of C. H. C., a Child. Department of Human Services v. J. A. C.
  • A181048 In the Matter of D. L., a Person Alleged to have Mental Illness. State v. D. L.
  • A181115 In the Matter of D. M. W., a Child. Department of Human Services v. K. L. W.
  • A181117 In the Matter of D. M. W., a Child. Department of Human Services v. K. L. W.
  • A179713 In the Matter of T. H., a Person Alleged to have Mental Illness. State v. T. H.
  • A178734 In the Matter of the Marriage of Bishop and Bishop
  • A180735 Melka, Christopher William v. Reyes
  • A178705 Shibahara v. State of Oregon, Child Welfare Division
  • A177352 State v. Berkey, Arlen Earl, Jr.
  • A178180 State v. Clay, Randy Kent
  • A177813 State v. Coyoy-Sanchez, Tomas, aka Sanchez, Tomas Coyoy
  • A179646 State v. Garcia, Bambi Vera Lee Ann, aka Garcia, Bambi, aka Garcia, Bambi Vera, aka Garcia, Bambi Veralee Ann, aka Garcia, Bamby Vera
  • A177416 State v. Hugg, Carl Richard
  • A177969 State v. Jacobsen, Jaren Sean Paul, aka Jacobsen, Jaren Sean
  • A178447 State v. Pena, Jorge Garcia
  • A179119 State v. Reid, Randall Scott Holzman
  • A180344 State v. Ricks, Jerome Louis
  • A178386 State v. Thompson, Robert Earl
  • A178006 State v. Whitcomb, Trevor A., aka Whitcomb, Trevor, aka Whitcomb, Trevor Anthony
  • A178035 State v. Wineteer, Craig Brian

Advance Sheets 2023 # 24

- 11/08/2023

Precedential Opinions
  • - 329 Or App     1 (A177666) State v. Dye
  • - 329 Or App   13 (A174076) Watson v. Board of Parole
  • - 329 Or App   28 (A174855) Sohappy v. Board of Parole
  • - 329 Or App   53 (A176795) Lewis-Taylor v. Board of Parole
  • - 329 Or App   57 (A177356) State v. Johnson
  • - 329 Or App   64 (A177832) Wright v. PERS
  • - 329 Or App   76 (A175984) State v. Peterson
Nonprecedential Memorandum Opinions
  • - 329 Or App   84 (A177407) State v. Dubey
  • - 329 Or App   88 (A179698) State v. C. H.
  • - 329 Or App   92 (A177806) State v. D. J. B.
  • - 329 Or App   96 (A177097) State v. D. S.
  • - 329 Or App 101 (A181035) Dept. of Human Services v. M. G. J.
  • - 329 Or App 107 (A181189) Dept. of Human Services v. B. N.
  • - 329 Or App 111 (A167525) Otnes v. PCC Structurals, Inc.
  • - 329 Or App 115 (A181163) Dept. of Human Services v. M. G. D.
Cases Affirmed Without Opinion

- 329 Or App 117

  • A179714 In the Matter of V. W., a Person Alleged to have Mental Illness. State v. V. W.
  • A176774 Oatney v. Manning et al

- 11/01/2023

Precedential Opinions
  • - - - 328 Or App 790 (A173292) East Valley Water v. Water Resources Commission
  • - - - 328 Or App 813 (A179573) Wasson v. Fagan
  • - - - 328 Or App 817 (A178517) Kristof v. Mealey
Nonprecedential Memorandum Opinions
  • - - - 328 Or App 828 (A180155) State v. J. L. L.
  • - - - 328 Or App 832 (A176529) State v. Rochefort
  • - - - 328 Or App 837 (A177260) Cowles and Flormoe-Cowles
  • - - - 328 Or App 841 (A181402) J. L. R. v. J. D. M.
- -
Cases Affirmed Without Opinion

- 328 Or App 842

  • A177240 Borchers, Joseph David v. Miller
  • A176767 Denney, Justin Allen v. Washburn
  • A182103 Friends of Marion County v. Marion County et al
  • A180909 In the Matter of A. R. M., a Child. Department of Human Services v. B. B.
  • A179585 In the Matter of D. J. T., a Person Alleged to have Mental Illness. State v. D. J. T.
  • A178261 In the Matter of the Compensation of Summerfield, Gene J., Claimant. Summerfield v. SAIF Corporation et al
  • A176711 State v. Buxton, Jeanna Lee
  • A177867 State v. Courier, John Edward
  • A167026 Woodin, Byrum Wade v. Miller

Advance Sheets 2023 # 23

- 10/25/2023

Precedential Opinions
  • - 328 Or App 722 (A180845) Dept. of Human Services v. J. L. M.
  • - 328 Or App 733 (A179630) State v. J. R. S.
  • - 328 Or App 739 (A180886) Dept. of Human Services v. J. A. G.
  • - 328 Or App 747 (A176083) State v. Winter
  • - 328 Or App 754 (A179897) Dept. of Human Services v. B. B.
  • - 328 Or App 762 (A178476) State v. A. O.
Nonprecedential Memorandum Opinions
  • - 328 Or App 764 (A177936) State v. Gilkey
  • - 328 Or App 769 (A177697) Twenty Second Street LLC v. Big Boots LLC
  • - 328 Or App 776 (A176632) Barrett v. Millsap
  • - 328 Or App 783 (A177331) Brooks v. Dept. of Human Services
  • - 328 Or App 788 (A177795) State v. Paschall
Cases Affirmed Without Opinion

- 328 Or App 789

  • A179764 In the Matter of L. B., a Person Alleged to have Mental Illness. State v. L. B.
  • A177551 McClure, Philip v. Board of Parole and Post-Prison Supervision
  • A177028 State v. Blackfeather, Lake W., aka Blackfeather, Lake
  • A176422 State v. Blasing, Billy Dean
  • A178560 State v. Bosworth, Trevor Day
  • A178202 State v. Buck, Richard William
  • A177590 State v. Franklin, James Curtis
  • A178617 State v. Hicks, Randy Allen Lester
  • A178065 State v. Mattei, Gino Hugo, Jr.

- 10/18/2023

Precedential Opinions
  • - 328 Or App 656 (A177070) State v. Tejeda-Serrano
  • - 328 Or App 662 (A175546) State v. Civil
  • - 328 Or App 678 (A176596) State v. Boyar
  • - 328 Or App 682 (A176773) State v. Peck
  • - 328 Or App 686 (A177996) Newman v. Marion County Sheriff's Office
  • - 328 Or App 697 (A176556) State v. Schneider
Nonprecedential Memorandum Opinions
  • - 328 Or App 707 (A176652) State v. McDonald
  • - 328 Or App 713 (A179558) Dept. of Human Services v. T. S. M.
  • - 328 Or App 717 (A175999) State v. Ordaz
Cases Affirmed Without Opinion

- 328 Or App 789

  • A176627 Gaters, Ricky Antwan v. Jerin
  • A180335 In the Matter of A. B., a Child. Department of Human Services v. M. B.
  • A177492 In the Matter of A. P. -N., a Youth. State v. A. P.-N.
  • A178133 Nyembo, Kulimba Winner v. Miller
  • A177392 State v. Gilmore, Ronald David
  • A177819 State v. Hagen, Michael James
  • A177029 State v. Kirtland, Tinna Louise
  • A176905 State v. Layton, Hayden Charles
  • A177807 State v. McInturff, Donald Wayne
  • A177708 State v. Nunez-Flores, Omar
  • A177508 State v. Perez, Manuel
  • A177268 State v. Smith, Rogan Lee
  • A177355 State v. Stockton, Jason Webster
  • A177743 State v. Walden, Mitchell Alan
  • A180000 Wascher et ux v. Sherman et al and “Fictitious Entity-D” et al

Advance Sheets 2023 # 22

- 10/11/2023

Precedential Opinions
  • - - - 328 Or App 554 (A181678) Manchester Solar, LLC v. Yamhill County
  • - - - 328 Or App 565 (A175822) Gilbride v. Smith
  • - - - 328 Or App 588 (A180424) Dept. of Human Services v. L. N. S.
  • - - - 328 Or App 597 (A173795) State v. Traylor
  • - - - 328 Or App 613 (A178935) Yocum and Pockett
  • - - - 328 Or App 620 (A176545) Final Table, LLC v. Acceptance Casualty Ins. Co.
Nonprecedential Memorandum Opinions
Cases Affirmed Without Opinion

- 328 Or App 655

  • A178769 Brookfield Properties Retail Inc. v. Fakhry, dba TADA Clackamas
  • A180989 In the Matter of A. P., a Child. Department of Human Services v. T. P.
  • A180689 In the Matter of K. M. M., aka K. M., a Child. Department of Human Services v. S. M.
  • A179746 In the Matter of L. R. D., a Person Alleged to Have Mental Illness. State v. L. R. D.
  • A181014 In the Matter of V. W., a Child. Department of Human Services v. L. W.
  • A177449 Parker, Bo Hans v. State of Oregon
  • A178557 State v. Brockett, Donald James
  • A178657 State v. Freddi, Angelo
  • A178032 State v. Perez-Garcia, Jose Tranquilino
  • A178171 State v. Robinson, Joshua David
  • A178407 State v. Willis, James Merlin
  • A179155 State v. Winward, Riley James
  • A177077 White, Breanna v. Brown
-10/04/2023 -
Precedential Opinions
  • - 328 Or App 452 (A174313) Crandall v. State of Oregon
  • - 328 Or App 469 (A177644) Harlukowicz v. State of Oregon
  • - 328 Or App 472 (A177639) Mendoza v. Xtreme Truck Sales, LLC
  • - 328 Or App 486 (A177244) State v. Case
  • - 328 Or App 503 (A179157) Dept. of Human Services v. M. P.
Nonprecedential Memorandum Opinions
  • - 328 Or App 529 (A179346) State v. C. J. W.
  • - 328 Or App 531 (A177542) State v. Kroske
  • - 328 Or App 535 (A179894) Wasson v. Dept. of Land Conservation
  • - 328 Or App 537 (A178944) State v. Rivas-Ordaz
  • - 328 Or App 539 (A177160) State v. Lindquist
  • - 328 Or App 542 (A177782) State v. Martin
  • - 328 Or App 544 (A181308) Phillips v. Polk County
  • - 328 Or App 547 (A180763) Dept. of Human Services v. B. E. E.
  • - 328 Or App 550 (A179551) Robbins v. Zeller
  • - 328 Or App 552 (A177271) State v. Ricci
  • - 328 Or App 553 (A178544) State v. Albright
  • - 328 Or App 554 (A176768) Boatman v. Reyes
- -
Cases Affirmed Without Opinion

- 328 Or App 655

  • A175940 Craigen, George West v. Brad Cain
  • A177914 Criswell, Michael v. Jamie Miller
  • A181166 In the Matter of E. K., a Child. Department of Human Services v. T. K.
  • A180715 In the Matter of Salazar and Jimenez
  • A179326 State v. Mulbreght, Peter William, III
  • A179407 State v. Estrada, Derrick Christopher , aka Estrada, Derrick C.
  • A179375 State v. Graham, Robert Judson, Jr., aka Graham, Robert Judson
  • A179408 State v. Rodriguez, Eric Israel
  • A179209 State v. Romero-Omana, Vicente
  • A179640 State v. Walsh, Phillip Robert

Advance Sheets 2023 # 21

- 09/27/2023

Precedential Opinions
  • - - - 328 Or App 267 (A180340) Dept. of Human Services v. R. F.
  • - - - 328 Or App 283 (A173412) Doe v. First Christian Church of The Dalles
  • - - - 328 Or App 296 (A174471) State v. Keck
  • - - - 328 Or App 309 (A167397) Thomas Creek Lumber v. Dept. of Forestry
  • - - - 328 Or App 328 (A175345) State v. McIntire
  • - - - 328 Or App 340 (A175405) State v. Johnson
  • - - - 328 Or App 352 (A172328) Hofer v. OHSU
  • - - - 328 Or App 363 (A174920) State v. Joseph
  • - - - 328 Or App 378 (A176038) M. C. v. Quest Global, Inc.
  • - - - 328 Or App 391 (A173665) Moore v. Portland Public Schools
Nonprecedential Memorandum Opinions
  • - - - 328 Or App 424 (A180724) Dept. of Human Services v. B. J. M.
  • - - - 328 Or App 429 (A178140) State v. C. A. B.
  • - - - 328 Or App 432 (A177497) Aikens v. Board of Parole
  • - - - 328 Or App 439 (A175079) State v. Shaffer
  • - - - 328 Or App 444 (A175599) State v. White
  • - - - 328 Or App 448 (A178681) Richards v. Employment Dept.
Cases Affirmed Without Opinion

- 328 Or App 451

  • A176279 Camarena-Revis v. Stoneberg
  • A176510 Galloway, Nathan Wayne v. Kelly
  • A180873 In the Matter of D. W. G., a Child. Department of Human Services v. B. L. K.
  • A178873 In the Matter of S. F., a Person Alleged to have Mental Illness. State v. S. F.
  • A180905 In the Matter of S. J. G., fka S. A. B., a Child. Department of Human Services and S. J. G., fka S. A. B. v. T. B.
  • A177015 In the Matter of the Marriage of Jimerson and Jimerson-Fritz
  • A175157 Piok v. Department of Human Services
  • A178123 State v. Shelton, Donovan John
  • A177317 State v. Thomayer, Thomas Norman
  • A177221 Voyles, Shaunda Lorraine v. State of Oregon

- 09/20/2023

Precedential Opinions
  • - 328 Or App 191 (A179158) Dept. of Human Services v. A. C. S. G.
  • - 328 Or App 200 (A180733) State v. H. D.
  • - 328 Or App 203 (A177223) State v. Stone
  • - 328 Or App 207 (A178703) Woods v. Hendricks
  • - 328 Or App 216 (A179312) State v. Coy
  • - 328 Or App 222 (A176269) State v. Clyde
  • - 328 Or App 228 (A176654) State v. Santini
Nonprecedential Memorandum Opinions
  • - 328 Or App 242 (A180722) Dept. of Human Services v. H. L.
  • - 328 Or App 244 (A180786) Dept. of Human Services v. T. F.
  • - 328 Or App 246 (A176831) State v. C. A. D.
  • - 328 Or App 249 (A176992) State v. Fredricks
  • - 328 Or App 257 (A174473) Madden Industrial v. Steel Buildings USA
Cases Affirmed Without Opinion

- 328 Or App 451

  • A179432 Johnson v. Hanthorne and Peters et al
  • A177717 State v. Baron, Tracey Stewart
  • A177815 State v. Bartkowski, Edward David, aka Bartkowski, Edward D.
  • A177480 State v. Bustamante, Pedro Javier, aka Bustamante, Javier Pedro, aka Martinez, Javier
  • A178168 State v. Markert, Jay Anthony
  • A177279 State v. McDonald, Gary Donavon, Jr.
  • A178066 State v. Ross, Cody Lee
  • A176780 State v. Schalk, Cody Ray
  • A176073 Templeton, Mark F. v. Board of Parole and Post-Prison Supervision

Advance Sheets 2023 # 20

- 09/13/2023

Precedential Opinions
  • - 328 Or App     1 (A176748) Snodgrass v. Miller
  • - 328 Or App     6 (A177872) Buchanan and Buchanan
  • - 328 Or App   15 (A178327) Hanson Joint Revocable Living Trust v. Sliger
  • - 328 Or App   22 (A175911) Wall v. Ash
  • - 328 Or App   29 (A176436) State v. Cannon
  • - 328 Or App   46 (A176668) Ricard v. Klamath Falls Forest Estates HOA
  • - 328 Or App   57 (A180562) Dept. of Human Services v. C. E. S.
  • - 328 Or App   64 (A175985) ODOT v. Pacific Indemnity Co.
  • - 328 Or App   78 (A177335) Newton v. Kelly
  • - 328 Or App   82 (A176091) State v. Sell
  • - 328 Or App   98 (A177158) Martin v. Kelly
  • - 328 Or App 110 (A178342) Peeler v. Reyes
Nonprecedential Memorandum Opinions
  • - 328 Or App 120 (A176461) Patchell v. State of Oregon
  • - 328 Or App 122 (A176899) Quinones-Miranda v. Berger
  • - 328 Or App 125 (A177439) Pohlman v. State of Oregon
  • - 328 Or App 127 (A177443) Cornelius v. State of Oregon
  • - 328 Or App 129 (A177450) Dasher v. Brown
  • - 328 Or App 133 (A177915) Stewart v. Miller
  • - 328 Or App 136 (A177714) State v. Davis
  • - 328 Or App 138 (A177812) State v. Roberts
  • - 328 Or App 140 (A179284) State v. Halsey
  • - 328 Or App 142 (A176415) Samuel v. Kelly
  • - 328 Or App 147 (A180454) Dept. of Human Services v. M. M.
  • - 328 Or App 154 (A175748) Truong v. Kelly
  • - 328 Or App 158 (A176996) Dinocenzo v. Gilbertson
  • - 328 Or App 161 (A177105) Evans v. Reyes
  • - 328 Or App 163 (A177130) Conklin v. Miller
  • - 328 Or App 165 (A177238) Howell v. Sheppard
  • - 328 Or App 167 (A177446) Misuraca v. State of Oregon
  • - 328 Or App 169 (A177635) Sanders v. Miller
  • - 328 Or App 171 (A180988) Dept. of Human Services v. M. B. A. L.
  • - 328 Or App 175 (A177640) Austin v. Washburn
  • - 328 Or App 178 (A177642) Howe v. Reyes
  • - 328 Or App 180 (A177751) Howerton v. Reyes
  • - 328 Or App 183 (A177913) Vanscoy v. Miller
  • - 328 Or App 187 (A178476) State v. A. O.
  • - 328 Or App 189 (A178292) State v. Barocio
Cases Affirmed Without Opinion

- 328 Or App 190

  • A177949 Bodine, Michael S. v. Board of Parole and Post-Prison Supervision
  • A176999 Cox, Stephen Edward v. Miller
  • A178496 Cuevas, Santos v. Fhuere
  • A177192 Herrick, Eero v. Cain
  • A180829 In the Matter of J. A. R. F. B., a Child. Department of Human Services v. J. L.
  • A179502 In the Matter of T. J. T., a Person Alleged to have Mental Illness. State v. T. J. T.
  • A178193 In the Matter of the Estate of Florence I. Gottier, Deceased. Gottier v. Johnson
  • A178256 State v. Alani, Aya Zeyad
  • A177838 State v. Duncan-Moor, Gage Ezell
  • A177200 State v. Furnish, Gary
  • A177781 State v. Jenkins, Eugene Lynn, Jr.
  • A178821 State v. Powelson, Justin Michael, aka Rush, Justin Michael
  • A179116 State v. Scheuer, James Michael
  • A176331 State v. Stebbins, Christopher Neil
  • A178147 State v. Weems, Ted Randal, aka Weems, Ted, aka Weems, Ted Randall, aka Weems, Teddy Randall
-09/07/2023 -
Precedential Opinions
  • - 327 Or App 708 (A175549) Marks v. LCDC
  • - 327 Or App 740 (A176919) State v. Miller
  • - 327 Or App 755 (A177411) State v. Forbes
  • - 327 Or App 763 (A177553) Mouktabis v. Clackamas County Assessor
Nonprecedential Memorandum Opinions
  • - 327 Or App 783 (A179555) Dept. of Human Services v. E. B. H.
  • - 327 Or App 787 (A180018) Dept. of Human Services v. Z. C.
  • - 327 Or App 795 (A180517) Dept. of Human Services v. H. B. L. H.
  • - 327 Or App 798 (A180621) Dept. of Human Services v. N. M.
  • - 327 Or App 802 (A176930) State v. Nelson
- -
Cases Affirmed Without Opinion

- 327 Or App 805

  • A180532 Bodewig, Brandyn Lawrence v. Psychiatric Security Review Board
  • A180749 In the Matter of A. R., aka A. O. L. R., a Child. Department of Human Services v. S. M. N.
  • A179291 In the Matter of C. M. B., a Person Alleged to have Mental Illness. State v. C. M. B.
  • A180713 In the Matter of D. B., a Child. Department of Human Services v. D. E. B.
  • A174193 In the Matter of Duke, Duke, Claimant. Duke v. Department of Human Services
  • A180745 In the Matter of M. L., a Child. Department of Human Services v. M. L.
  • A180750 In the Matter of M. M. M., a Child. Department of Human Services v. S. A. M., Jr.
  • A180661 In the Matter of M. R. T., a Person Alleged to have Mental Illness. State v. M. R. T.
  • A180764 In the Matter of T. S., a Child. Department of Human Services v. S. S.
  • A180680 In the Matter of V. H. J. R., aka V. J. R., a Child. Department of Human Services v. C. C. J., aka C. C.
  • A176953 Ross, James Arthur v. Reyes
  • A181444 State v. Brooks, Gregory
  • A178958 State v. Cable, Dustin Riley
  • A179621 State v. Good, William Lee, aka Good, William L.
  • A178853 State v. Rolen, Shereen Renee, aka Rolen, Shereen R.
  • A179541 State v. Wacker, Bart Dale

Advance Sheets 2023 # 19

- 08/30/2023

Precedential Opinions
  • - - - 327 Or App 631 (A180292) Dept. of Human Services v. T. M. M.
  • - - - 327 Or App 640 (A172429) Mayes v. Ramos
  • - - - 327 Or App 655 (A176205) State v. Montgomery
  • - - - 327 Or App 665 (A178325) State v. Rose
  • - - - 327 Or App 673 (A176246) Bacon v. Cain
Nonprecedential Memorandum Opinions
  • - - - 327 Or App 680 (A175832) State v. Garcia-Vasquez
  • - - - 327 Or App 683 (A180133) Dept. of Human Services v. B. B.
  • - - - 327 Or App 687 (A176201) State v. Wilcox
  • - - - 327 Or App 692 (A178587) Mendoza v. Ron Dickson Corp.
  • - - - 327 Or App 700 (A175365) Green v. Kelly
Cases Affirmed Without Opinion

- 327 Or App 707

  • A177614 Conlon et al v. Home Preservation Strategies, LLC et al and Freed, aka Ferrari
  • A177224 State v. Arreola, Jose Luis Heredia
  • A176986 State v. Barrett, Jacob
  • A177118 State v. Castillo, Robert, Jr.
  • A177718 State v. Garcia, Cesar Toribio, aka Toribio-Garcia, Cesar
  • A177589 State v. Gassner, Timothy Jay
  • A177096 State v. Moo-Caamal, Jose, aka Moo-Caamal, Jose Antonio
  • A177514 State v. Pack, Casey Dakota
  • A179256 State v. Robleto, Miguel F.
  • A177493 State v. Smith, Payton Bradford
  • A177211 State v. Zangari, Fred James
-08/23/2023 -
Precedential Opinions
  • - - - 327 Or App 548 (A175596) State v. Cantrell
  • - - - 327 Or App 558 (A177184) State v. T. C.
  • - - - 327 Or App 584 (A175317) Blain v. Cain
  • - - - 327 Or App 592 (A177027) State v. Brown
  • - - - 327 Or App 603 (A177597) TruNorth Warranty Plans of North America v. DCBS
  • - - - 327 Or App 614 (A180312) E. A. R. v. R. B. E.
Nonprecedential Memorandum Opinions

Advance Sheets 2023 # 18

- 08/16/2023

Precedential Opinions
  • - 327 Or App 437 (A173326) State v. Hargrove
  • - - - 327 Or App 456 (A177019) Wolfston v. Eastside Bend, LLC
  • - - - 327 Or App 465 (A173594) Albrecht v. Emmert
  • - - - 327 Or App 475 (A175509) Yoshida v. Watson
  • - - - 327 Or App 485 (A180799) Johnson v. Landwatch Lane County
  • - - - 327 Or App 499 (A176901) BA Ventures, LLC v. Farmers Ins. Exchange
  • - - - 327 Or App 509 (A178269) Esquire Investments, Inc. v. Summers
Nonprecedential Memorandum Opinions
  • - - - 327 Or App 523 (A175647) State v. Saiz
  • - - - 327 Or App 528 (A175808) State v. Azadeh
  • - - - 327 Or App 538 (A179626) Dept. of Human Services v. K. H.
  • - - - 327 Or App 543 (A178376) Unger v. McCormick
Cases Affirmed Without Opinion

- 327 Or App 547

  • A178722 Hawkins v. Kelly
  • A177179 Hawkins v. Kelly
  • A181591 Icon Construction and Development, LLC v. City of Oregon City et al and Hammond-Williams et al
  • A180469 In the Matter of A. S. M. H., aka B. G. H., a Child. Department of Human Services v. N. M. H.
  • A179320 In the Matter of C. K. P., a Person Alleged to have Mental Illness. State v. C. K. P.
  • A180474 In the Matter of M. R., a Child. Department of Human Services v. J. D. B.-E.
  • A176765 Lance, Hallie Jolyn v. Riggin
  • A175941 Reyes-Cadenas, Winson v. Kelly

- 08/09/2023

Precedential Opinions
  • - - - 327 Or App 326 (A176252) Cazun v. State of Oregon
  • - - - 327 Or App 332 (A174283) Person v. Board of Parole
  • - - - 327 Or App 344 (A175765) State v. Humphrey
  • - - - 327 Or App 350 (A176685) State v. Pitts
  • - - - 327 Or App 358 (A176785) State v. Babcock
  • - - - 327 Or App 363 (A177420) State v. Durant
  • - - - 327 Or App 373 (A175707) Blakeley v. Quality Loan Service Corp.
  • - - - 327 Or App 387 (A176798) State v. Waldrup
  • - - - 327 Or App 396 (A177746) City of Salem v. Stadeli
Nonprecedential Memorandum Opinions
  • - - - 327 Or App 413 (A180233) Dept. of Human Services v. R. J. B.
  • - - - 327 Or App 418 (A176080) Pennington v. Cain
  • - - - 327 Or App 422 (A176824) State v. Dove
  • - - - 327 Or App 425 (A177403) State v. Huggett
  • - - - 327 Or App 430 (A177556) Vilca-Inga v. SAIF
  • - - - 327 Or App 434 (A176450) Hernandez-Zurita v. State of Oregon
Cases Affirmed Without Opinion

- 327 Or App 547

  • A176981 Fohl and Quirk
  • A179571 In the Matter of the Marriage of White, fka Brentano and White
  • A178317 State v. Coutino, Carlos Alberto
  • A178422 State v. Gonzalez, Kleynner Hernandez
  • A178642 State v. McWilliams, Jane Ann, aka McWilliams, Jane Anna
  • A179014 State v. Nabulsi, Ramsy Husni, aka Foss, Ramsy Husni

Advance Sheets 2023 # 17

- 08/02/2023

Cases Affirmed Without Opinion

- 327 Or App 325

    In the Matter of M. G., a Person Alleged to have Mental Illness. State v. M. G. (A179248)

- 07/26/2023

Precedential Opinions
  • - 327 Or App 197 (A176456) Davoodian v. Rivera
  • - 327 Or App 219 (A176530) Duckworth v. Duckworth
  • - 327 Or App 256 (A177021) State v. Horton
  • - 327 Or App 268 (A180452) Dept. of Human Services v. M. M.
  • - 327 Or App 275 (A176866) D. S.
Nonprecedential Memorandum Opinions
  • - 327 Or App 286 (A178723) T. M. S. v. Stanfill
  • - 327 Or App 290 (A179876) Dept. of Human Services v. K. T.
  • - 327 Or App 296 (A179958) Dept. of Human Services v. N. B.
  • - 327 Or App 300 (A180212) Dept. of Human Services v. B. T. W.
  • - 327 Or App 306 (A175787) State v. White
  • - 327 Or App 309 (A177457) Higgins v. Employment Dept.
  • - 327 Or App 313 (A176312) State v. E. L. W.
  • - 327 Or App 316 (A177034) State v. Alvarado
  • - 327 Or App 319 (A174750) State v. Mullin
  • - 327 Or App 322 (A179604) A. L. B. v. Dalby
- -
Cases Affirmed Without Opinion

- 327 Or App 325

  • A177566 State v. Abraham, Dwayne Edward
  • A177269 State v. Clark, Kenneth Donavan
  • A176788 State v. Hillsman, Austyn Wayne
  • A176958 State v. Holland, Cody Mykel, aka Holland, Cody
  • A176715 State v. Meyer, Leslie Raymond
  • A177045 State v. Perez-Tovar, Diter Josefat
  • A178012 State v. Whitecotton, Edward Allan, aka Whitecotton, Edward A.
  • A178654 State v. Winks, Kyle

Advance Sheets 2023 # 16

- 07/19/2023

Precedential Opinions
  • - - - 327 Or App 129 (A175902) State v. Le
  • - - - 327 Or App 143 (A176393) State v. Koelzer
  • - - - 327 Or App 149 (A177809) Service Employees Int'l Union Local 503 v. U of O
Nonprecedential Memorandum Opinions
  • - - - 327 Or App 170 (A179557) Dept. of Human Services v. S. M. G.
  • - - - 327 Or App 173 (A180489) Dept. of Human Services v. D. L. H.
  • - - - 327 Or App 178 (A175775) Zolotoff v. Reyes
  • - - - 327 Or App 182 (A178288) Cochell v. Dept. of Human Services
  • - - - 327 Or App 186 (A178699) State v. Colby
  • - - - 327 Or App 189 (A178707) State v. T. A. C.
  • - - - 327 Or App 193 (A179329) State v. A. G. S.
  • - - - 327 Or App 195 (A178815) State v. E. A. M.
Cases Affirmed Without Opinion

- 327 Or App 196

  • A180156 In the Matter of R. B., a Person Alleged to have Mental Illness. State v. R. B.
  • A179427 State v. Cibrian-Gongora, Omar Alejandro
  • A177481 State v. Holzhauser, Chad Lee
  • A177711 State v. Morgan, Mindi Louise
  • A179382 State v. Prieto, Russell James
  • A178443 State v. Walters, Christina Louise

- 07/12/2023

Precedential Opinions
  • - 327 Or App     1 (A179181) Oregon Health Authority
  • - 327 Or App     6 (A180682) Coopman v. City of Eugene
  • - 327 Or App   25 (A163421) Kragt v. Board of Parole
  • - 327 Or App   28 (A176937) State v. Hampton
  • - 327 Or App   39 (A178936) K. E. B. v. Bradley
  • - 327 Or App   48 (A176119) Childress v. Board of Psychology
  • - 327 Or App   61 (A179463) Dept. of Human Services v. C. H.
  • - 327 Or App   82 (A176016) Calef v. Employment Dept.
  • - 327 Or App   91 (A176448) State v. Moore
Nonprecedential Memorandum Opinions
  • - 327 Or App 100 (A179820) Dept. of Human Services v. A. P.
  • - 327 Or App 106 (A176101) Genaro-Lopez v. Cain
  • - 327 Or App 112 (A176223) Ahmad and Khakwani
  • - - - 327 Or App 117 (A177265) Brewer v. Fritz
  • - 327 Or App 122 (A176855) Marcus v. Reyes
  • - 327 Or App 128 (A177678) State v. Garner
Cases Affirmed Without Opinion

- 327 Or App 196

  • A180137 Clark v. Oregon Board of Dentistry et al
  • A176739 Gutierrez, Antonio Alejandro v. Board of Parole and Post-Prison Supervision
  • A179080 In the Matter of K. T., a Person Alleged to have Mental Illness. State v. K. T.
  • A180108 In the Matter of L. R. S., a Child. Department of Human Services v. S. A. B. et al
  • A178540 In the Matter of Parker, Lola B., Deceased. Parker and Parker v. Marble and Financial Assistance, Inc. et al and Carlson
  • A180419 In the Matter of the Marriage of Kindred and Kindred, Jr.
  • A178326 Long, Brandon v. Board of Parole and Post-Prison Supervision
  • A177344 State v. Armenta, Rey Fernando, Jr., aka Armenta, Rey
  • A177673 State v. Davis, Lametrius Tarell, aka Davis, Lametrius Tarrell
  • A176947 State v. Moody, Bobby Beau John
  • A177320 State v. Steinberg, Dwayne Michael

Advance Sheets 2023 # 15

- 07/06/2023

Precedential Opinions
  • - - - 326 Or App 705 (A176742) Hoover v. Industrial Scrap Corp.
  • - - - 326 Or App 709 (A177706) Craven and Craven
  • - - - 326 Or App 720 (A177995) DeHart v. Tofte
  • - - - 326 Or App 753 (A176458) State v. Rockafellor
  • - - - 326 Or App 764 (A177242) Fields v. City of Newport
  • - - - 326 Or App 777 (A174602) Rinne v. PSRB
  • - - - 326 Or App 788 (A176593) State v. Little
  • - - - 326 Or App 796 (A176604) IBEW Local 89 v. Wallan
  • - - - 326 Or App 807 (A177645) Mandell v. Miller
Nonprecedential Memorandum Opinions
- -
Cases Affirmed Without Opinion

- 326 Or App 842

  • A177324 Armas, Richard Bryan v. Washburn
  • A179768 In the Matter of C. S., a Child. Department of Human Services v. J. L. S.
  • A179243 In the Matter of J. H., a Person Alleged to have Mental Illness. State v. J. H.
  • A178694 In the Matter of R. D., a Person Alleged to have Mental Illness. State v. R. D.
  • A181170 Luther v. City of Albany

- 06/28/2023

Precedential Opinions
  • - 326 Or App 583 (A169687) State v. Halvorson
  • - 326 Or App 587 (A173971) State v. Gonzalez
  • - 326 Or App 605 (A173722) Bellshaw v. Farmers Ins. Co.
  • - 326 Or App 631 (A174881) State v. Brosy
  • - 326 Or App 640 (A175034) State v. J. H.
  • - 326 Or App 648 (A177895) Williamson v. Zielinski
Nonprecedential Memorandum Opinions
  • - 326 Or App 654 (A174281) State v. Coffelt
  • - 326 Or App 662 (A176808) State v. Bonine
  • - 326 Or App 668 (A176948) State v. Fiala
  • - 326 Or App 671 (A177429) State v. Shatalov
  • - 326 Or App 677 (A180068) Dept. of Human Services v. N. M. F.
  • - 326 Or App 680 (A178072) State v. Breeding
  • - 326 Or App 682 (A174365) State v. K. M. A.
  • - 326 Or App 685 (A175930) Axis Construction Consulting, Inc. v. Ganz
  • - 326 Or App 688 (A175361) Stahlbush Island Farms, Inc. v. IPMF, LLC
  • - 326 Or App 695 (A178732) Dept. of Human Services v. J. T.
  • - 326 Or App 702 (A178759) State v. M. T. H.
Cases Affirmed Without Opinion

- 326 Or App 842

  • A180215 In the Matter of A. L. M., aka A. M., a Child. Department of Human Services v. S. A. G., aka S. G.
  • A178871 In the Matter of E. L., a Person Alleged to have Mental Illness. State v. E. L.
  • A176179 Marshall, Patricia Ann v. Brown
  • A176623 Sanchez-Diaz, Efrain v. Miller
  • A177421 State v. Bradford, Jeffry Carl
  • A176970 State v. Davis, William Charles, Jr., aka Davis, William Charles
  • A177177 State v. Evans, Ephraim David
  • A176972 State v. Martinez, Julio Cesar
  • A177499 State v. McLaughlin, Sean David
  • A178659 State v. Owen, Alan Wade
  • A176730 State v. Restorff, Randy, aka Restorff, Randy James
  • A177334 State v. Schwab, Joseph Gerald
  • A177759 State v. Wasmund, Taylor Scott
  • A177347 State v. Weis, Kimberly J.
  • A177603 State v. Welty, Joshua Randall
  • A177599 State v. Whitman, Jacob Lewis
  • A176967 State v. Worden, Cory B.

Advance Sheets 2023 # 14

- 06/22/2023

Precedential Opinions
  • - - - 326 Or App 469 (A176291) State v. Skotland
  • - - - 326 Or App 490 (A177971) Lavelle-Hayden v. Employment Dept.
  • - - - 326 Or App 500 (A173334) State v. Wesley
  • - - - 326 Or App 525 (A175537) Andlovec v. Spoto
  • - - - 326 Or App 538 (A175868) Bush v. City of Prineville
Nonprecedential Memorandum Opinions
  • - - - 326 Or App 542 (A177063) Stewart v. Board of Parole
  • - - - 326 Or App 545 (A178308) Winters v. Bushnell
  • - - - 326 Or App 550 (A176594) State v. Ducker
  • - - - 326 Or App 552 (A176983) State v. Aquirre
  • - - - 326 Or App 556 (A177167) Clackamas County Justice Court v. Chan
  • - - - 326 Or App 559 (A178755) O. D. v. Ranel
  • - - - 326 Or App 562 (A179774) Dept. of Human Services v. C. P. K.
  • - - - 326 Or App 565 (A175839) State v. Bowman
  • - - - 326 Or App 575 (A175910) Meyer v. Cloudcrest Homes, LLC
Cases Affirmed Without Opinion

- 326 Or App 582

  • A176135 Bristow, Kevin Earl v. Washburn
  • A178874 In the Matter of M. A., a Person Alleged to have Mental Illness. State v. M. A.
  • A179199 In the Matter of N. P., a Person Alleged to have Mental Illness. State v. N. P.

- 06/14/2023

Precedential Opinions
  • - 326 Or App 318 (A174706) Maltais v. PeaceHealth
  • - 326 Or App 332 (A177908) State v. Cleaver
  • - 326 Or App 337 (A175078) State v. Eggers
  • - 326 Or App 352 (A172723) State v. Ezell
  • - 326 Or App 363 (A176787) Smith v. Johnson
  • - 326 Or App 371 (A175638) State v. M. T. F.
  • - 326 Or App 384 (A175938) State v. D. B. O.
  • - 326 Or App 396 (A168298) State v. Taylor
  • - 326 Or App 410 (A173923) State v. Miles
  • - 326 Or App 426 (A179410) Dept. of Human Services v. M. G. J.
  • - 326 Or App 439 (A180668) Central Oregon LandWatch v. Deschutes County
Nonprecedential Memorandum Opinions
  • - - - 326 Or App 453 (A174211) Wasson v. Clarno
  • - 326 Or App 458 (A175542) Trautner v. State of Oregon
  • - 326 Or App 462 (A176861) Carey and Carey
  • - 326 Or App 465 (A177090) State v. Moore
Cases Affirmed Without Opinion

- 326 Or App 582

  • A177116 Evimero Realty Southern Oregon, LLC v. Cunningham
  • A178911 In the Matter of A. L. S., a Person Alleged to have Mental Illness. State v. A. L. S.
  • A179805 In the Matter of C. F., a Person Alleged to have Mental Illness. State v. C. F.
  • A180058 In the Matter of G. T., a Person Alleged to have Mental Illness. State v. G. T.
  • A179017 In the Matter of K. M., a Person Alleged to have Mental Illness. State v. K. M.
  • A178623 In the Matter of S. R.-N., a Person Alleged to have Intellectual Disabilities. State v. S. R.-N.
  • A179069 In the Matter of the Compensation of Groves, Justine M., Claimant. Groves v. SAIF Corporation et al
  • A177266 In the Matter of the Estate of Eldon F. Branson, Deceased. Branson v. Branson, Personal Representative of the Estate of Eldon F. Branson
  • A178330 Nulph, George William v. Board of Parole and Post-Prison Supervision
  • A177442 Rankin v. Landers
  • A176435 Ridling, Brennan Scott v. State of Oregon
  • A176744 State v. Alsori, Aqeel Mohammed Fadhil, aka Alsori, Ageel, aka Alsori, Aqeel Mohammed Fadh
  • A178099 State v. Avila, Sergio
  • A175962 State v. Dickenson, Shiloh Kane
  • A177387 State v. Hunt, Mark Preston, aka Olson, Mark Preston
  • A178967 State v. Kelley, Shawn Christopher, Jr.
  • A176218 State v. Lamberts, Angelyne Irene Teresa
  • A177777 State v. Lowe, Ryan Michael
  • A177009 State v. McRae, Colton Aaron
  • A174320 State v. Miller, Elvin Lee
  • A178952 State v. Moore, Michael Joseph
  • A176612 State v. Munger, Trenton Forrest
  • A178570 State v. Truman, Christopher Lee
  • A178417 State v. Wilturner, Cedric Cordell

Advance Sheets 2023 # 13

- 06/07/2023

Precedential Opinions
  • - - - 326 Or App 192 (A179763) Dept. of Human Services v. T. B.
  • - - - 326 Or App 200 (A177223) State v. Stone
  • - - - 326 Or App 215 (A180520) Botts Marsh LLC v. City of Wheeler
  • - - - 326 Or App 237 (A175772) State v. J. D. B.
  • - - - 326 Or App 246 (A174543) State v. Parras
  • - - - 326 Or App 259 (A176592) Curry v. Highberger
  • - - - 326 Or App 276 (A177672) Gramada v. SAIF
Nonprecedential Memorandum Opinions

- 06/01/2023

Precedential Opinions
  • - - - 326 Or App 188 (N011096) Douglas County v. Fish and Wildlife Commission
- -
Cases Affirmed Without Opinion

- 326 Or App 317

  • A177301 Case v. Case, parties in possession, and all other persons or parties claiming any right, title, lien or interest in the property described herein
  • A180250 In the Matter of A. F., a Child. Department of Human Services v. Z. S. F.
  • A178662 In the Matter of B. G. L., a Person Alleged to have Mental Illness. State v. B. G. L.
  • A180070 In the Matter of C. M. E. I., a Child. Department of Human Services v. K. C. R.
  • A178366 In the Matter of M. V., a Person Alleged to have Mental Illness. State v. M. V.
  • A178346 In the Matter of S. A., a Person Alleged to have Mental Illness. State v. S. A.
  • A178334 In the Matter of T. M. E., a Person Alleged to have Mental Illness. State v. T. M. E.
  • A177154 State v. Jafarzadeh, Matteen, aka Jafarzadeh, Matteen Hussain, aka Jafazadeh, Matteen
  • A176729 State v. Lawson, Michael Kenneth
  • A176968 State v. Matthews, James Xavier
  • A177346 State v. McKennan, Jerry Lee
  • A176869 State v. Mills, David Grant
  • A177689 State v. Tavizon, Natali

Advance Sheets 2023 # 12

- 05/24/2023

Precedential Opinions
  • - 326 Or App 132 (A176055) Peabody v. SAIF
  • - 326 Or App 140 (A174153) State v. Zamora
  • - 326 Or App 149 (A178519) Dept. of Human Services v. J. E. D. V.
  • - 326 Or App 177 (A171443) State v. Morales
Nonprecedential Memorandum Opinions
  • - 326 Or App 183 (A176719) State v. Maciel-Salcedo

- 05/17/2023

Precedential Opinions
  • - 326 Or App     1 (A176826) KKMH Properties, LLC v. Shire
  • - 326 Or App   11 (A175797) State v. Vannoy
  • - 326 Or App   25 (A175899) A. B. A. v. Wood
  • - 326 Or App   29 (A176985) Wright v. Lutzi
  • - 326 Or App   36 (A177572) State v. Clowdus
  • - 326 Or App   46 (A171078) State v. Brown
  • - 326 Or App   60 (A176285) State v. Solis
  • - 326 Or App   64 (A175260) State v. Williams
Nonprecedential Memorandum Opinions
  • - 326 Or App   87 (A176183) Martucci v. Hilton
  • - 326 Or App   90 (A176893) Guardado v. Kelly
  • - 326 Or App   93 (A176513) State v. McNutt
  • - 326 Or App   97 (A178054) State v. Stern-Carusone
  • - 326 Or App 100 (A153283) Compton v. Premo
  • - 326 Or App 117 (A176132) Garza v. Recology Oregon Recovery, Inc.
  • - 326 Or App 122 (A176369) Yoshida v. Watson
  • - 326 Or App 125 (A176194) State v. Carter
  • - 326 Or App 129 (A179657) Dept. of Human Services v. A. M. M.
Cases Affirmed Without Opinion

- 326 Or App 187

  • A176511 State v. Burdett, Richard Lee
  • A176828 State v. Davis, Celeste Cyrene
  • A176878 State v. Ellis, Chad James
  • A175552 State v. Fernandez, Jose Olivarez, aka Fernandez, Jose
  • A176580 State v. Francisco, Pablo Sebastian
  • A177560 State v. Gullickson, Randolph Victor
  • A176838 State v. Hughes, Sabine Michelle
  • A176904 State v. James, Christopher
  • A176994 State v. Justham, William Booker, Jr.
  • A177079 State v. Libbett, Cortny Ann
  • A175913 State v. Long, Michael Ray
  • A177839 State v. Orosz, Antonio Santino
  • A176693 State v. Serna, Rocky Peter, aka Serna, Rocky Pete
  • A176700 State v. Suverly, Brian Allen
  • A176725 State v. Tallent, Jason Matthew
  • A176702 State v. Yener, Lenny

Advance Sheets 2023 # 11

- 05/10/2023

Precedential Opinions
  • - - - 325 Or App 777 (A174811) Preble v. Centennial School Dist., No. 287
  • - - - 325 Or App 787 (A177203) M. F. v. Baker
  • - - - 325 Or App 795 (A176059) Guzek v. Board of Parole
Nonprecedential Memorandum Opinions
Cases Affirmed Without Opinion

- 325 Or App 838

  • A176451 Carrasco, Mireya Almarez v. Brown
  • A176248 Haluska, Branden Shawn v. Cain
  • A178833 Herrera v. Oregon Department of Corrections
  • A178395 In the Matter of J. R. M., a Person Alleged to have Mental Illness. State v. J. R. M.
  • A179776 In the Matter of S. D. H., a Child. Department of Human Services v. M. J. H.
  • A179336 In the Matter of the Marriage of Chesney and Horner
  • A178274 State v. Ohare, Ian Elliott
  • A178950 Stauffer et al v. Fitbit, Inc.
  • A176688 Wright, Beverly June v. State of Oregon
-05/03/2023 -
Precedential Opinions
  • - 325 Or App 624 (A172739) State v. Perkins
  • - 325 Or App 634 (A176077) Baker v. State of Oregon
  • - 325 Or App 642 (A177168) Kizer Excavating v. Stout Building Contractors
  • - 325 Or App 645 (A172038) State v. Acosta
  • - 325 Or App 648 (A169427) Hathaway v. B & J Property Investments, Inc.
  • - 325 Or App 688 (A163421) Kragt v. Board of Parole
  • - 325 Or App 696 (A173135) State v. Howard
  • - 325 Or App 718 (A171975) State v. H. D. E.
  • - 325 Or App 722 (A172453) State v. Wampler
  • - 325 Or App 736 (A175655) Wecker v. Salem Clinic, P.C.
  • - 325 Or App 746 (A176532) State v. D. B. O.
Nonprecedential Memorandum Opinions
  • - - - 325 Or App 752 (A175969) State v. Kepsel
  • - 325 Or App 755 (A173368) Paatalo v. McCarthy
  • - 325 Or App 759 (A177219) Smith v. Kelly
  • - 325 Or App 762 (A175475) State v. Valero
  • - 325 Or App 767 (A176586) State v. Troupe
  • - 325 Or App 772 (A177529) Davis and Davis
- -
Cases Affirmed Without Opinion

- 325 Or App 838

  • A177388 Harris, Darnell Edward v. Highberger
  • A178746 In the Matter of C. Y., a Person Alleged to have Mental Illness. State v. C. Y.
  • A178322 In the Matter of P. J. R., a Person Alleged to have Mental Illness. State v. P. J. R.
  • A176584 In the Matter of the Compensation of Mendoza, Antonio A., DCD, Claimant. Velazquez v. SAIF Corporation et al
  • A177445 Witten, Dennis Lee v. Fhuere

Advance Sheets 2023 # 10

- 04/26/2023

Precedential Opinions
  • - - - 325 Or App 480 (A171320) Sarepta Therapeutics v. Oregon Health Authority
  • - - - 325 Or App 503 (A172320) State v. Baca
  • - - - 325 Or App 511 (A174005) Sodaro v. Boyd
  • - - - 325 Or App 527 (A175287) State v. Wiltse
  • - - - 325 Or App 538 (A175319) State v. Ovalle
  • - - - 325 Or App 550 (A175640) State v. Severson
  • - - - 325 Or App 560 (A175037) Steltz v. Cain
  • - - - 325 Or App 566 (A176021) Giltner v. SAIF
  • - - - 325 Or App 574 (A173289) State v. Priester
Nonprecedential Memorandum Opinions
  • - - - 325 Or App 598 (A176151) State v. Phillips
  • - - - 325 Or App 600 (A178943) Dept. of Human Services v. P. M.
  • - - - 325 Or App 606 (A175691) Gosney v. Callaway Cars, Inc.
  • - - - 325 Or App 610 (A179779) Dept. of Human Services v. H. G. M.
  • - - - 325 Or App 618 (A174817) State v. Cruz
  • - - - 325 Or App 621 (A179245) State v. N. B.
Cases Affirmed Without Opinion

- 325 Or App 623

  • A179171 In the Matter of B. M. W., a Person Alleged to have Mental Illness. State v. B. M. W.
  • A179345 In the Matter of D. M., a Person Alleged to have Mental Illness. State v. D. M.
  • A177683 In the Matter of R. J. S., a Person Alleged to have Mental Illness. State v. R. J. S.
  • A177318 Lara-Lopez, Augustine v. Washburn
  • A178712 State v. Bowman, Mitchell Wade
  • A177742 State v. Miler, Homer Eugene, aka Johnson, Rocky Lee, aka Miler, Rockey, aka Miler, Rocky Eugene, aka Miller, Homer E.
  • A177723 State v. Nida, Kendall Keith
  • A177744 State v. Phillips, Tracy Lee
  • A177425 State v. Shaw, Gary Daniel
  • A176189 Stoddard, Robert v. Washburn
-04/19/2023 -
Precedential Opinions
  • - - - 325 Or App 262 (A175457) Aaron v. Kelly
  • - - - 325 Or App 267 (A175863) State v. Robintree
  • - - - 325 Or App 282 (A180472) Friends of Yamhill County v. Yamhill County
  • - - - 325 Or App 296 (A173250) State v. Serrano
  • - - - 325 Or App 298 (A173477) State v. Pierpoint
  • - - - 325 Or App 312 (A175196) Crombie v. Board of Parole
  • - - - 325 Or App 326 (A176066) JGB Enterprises, LLC v. OLCC
  • - - - 325 Or App 355 (A176576) A. D. L. and Lane
  • - - - 325 Or App 367 (A176662) State v. Baker
  • - - - 325 Or App 372 (A174783) State v. Wimmer
  • - - - 325 Or App 381 (A177515) Hargreaves v. Matteucci
Nonprecedential Memorandum Opinions
  • - - - 325 Or App 395 (A175815) Patchell v. State of Oregon
  • - - - 325 Or App 399 (A177326) Byers v. Reyes
  • - - - 325 Or App 403 (A177626) Brown v. Miller
  • - - - 325 Or App 407 (A176503) State v. Stone
  • - - - 325 Or App 411 (A176800) Beavers v. Hendricks
  • - - - 325 Or App 414 (A179658) Dept. of Human Services v. A. M. M.
  • - - - 325 Or App 419 (A176558) State v. Caldwell
  • - - - 325 Or App 421 (A176956) Moret v. Board of Parole
  • - - - 325 Or App 424 (A177050) LaTulippe v. Oregon Medical Board
  • - - - 325 Or App 429 (A177552) Campbell Soup Company v. Langan
  • - - - 325 Or App 434 (A175936) State v. Owens
  • - - - 325 Or App 437 (A176533) Issac v. Kelly
  • - - - 325 Or App 440 (A176806) State v. Seavey
  • - - - 325 Or App 442 (A175425) Thomson v. Dept. of Human Services
  • - - - 325 Or App 446 (A175183) State v. Rivers
  • - - - 325 Or App 454 (A175290) State v. Morales
  • - - - 325 Or App 462 (A177333) Stephenson v. Kelly
  • - - - 325 Or App 465 (A177336) Mendoza v. Reyes
  • - - - 325 Or App 471 (A178588) State v. I. G.
  • - - - 325 Or App 477 (A179655) Dept. of Human Services v. S. A. B.
Cases Affirmed Without Opinion

- 325 Or App 623

  • A180346 Ericcson v. Lane County

Advance Sheets 2023 # 09

- 04/12/2023

Precedential Opinions
  • - 325 Or App 234 (A175753) State v. Snodgrass
Nonprecedential Memorandum Opinions
  • - 325 Or App 245 (A176733) State v. Demeritt
  • - 325 Or App 247 (A177571) Yasana v. Kaczor
  • - 325 Or App 250 (A179420) Huskey v. Highberger
  • - 325 Or App 252 (A174587) Trent v. Connor Enterprises, Inc.
  • - 325 Or App 257 (A175551) Zornes v. State of Oregon
Cases Affirmed Without Opinion

- 325 Or App 261

  • A176631 Harrison, Carl Wayne v. Kelly et al
  • A175567 Hogue, Darren L. v. Cain
  • A178291 In the Matter of C. L., a Person Alleged to have Mental Illness. State v. C. L.
  • A176058 Johnson, Kris M. v. State of Oregon
  • A172317 Stewart, Robert v. Cain

- 04/05/2023

Precedential Opinions
  • - - - 325 Or App 115 (A174836) State v. Redding
  • - - - 325 Or App 123 (A175606) Davis & Galm, LLC v. Ronald A. Neve, CPA, PC
  • - - - 325 Or App 134 (A175738) State v. Ortiz
  • - - - 325 Or App 157 (A175438) Petix v. Gillingham
  • - - - 325 Or App 176 (A178633) Dept. of Human Services v. L. B.
  • - - - 325 Or App 184 (A175784) Cantu v. Progressive Classic Ins. Co.
Nonprecedential Memorandum Opinions
- -
Cases Affirmed Without Opinion

- 325 Or App 261

  • A179694 In the Matter of A. R. T., a Child. Department of Human Services and A. R. T. v. D. M. T.
  • A178299 In the Matter of M. A. E., a Person Alleged to have a Mental Illness. State v. M. A. E.
  • A177933 Lariviere v. Driver and Motor Vehicle Services Division (DMV), a Division of the Department of Transportation
  • A178708 Neal v. Neal
  • A176675 State v. Gilbert, Joseph Jesse, Jr.
  • A176796 State v. Hartford, Cory Thomas
  • A177252 State v. Lindstrom, Charles John
  • A176708 State v. Thompson, Jack Eldon
  • A176898 State v. Tolento, Jesus
  • A178664 Venetz v. Andrade
  • A175773 Williams, Ronald Kay v. Brown
  • A176075 York, Nicholas Theodore v. Cain

Advance Sheets 2023 # 08

- 03/29/2023

Precedential Opinions
  • - 325 Or App     1 (A174457) State v. Leake
  • - 325 Or App   16 (A175697) Martin v. Dept. of Human Services
  • - 325 Or App   19 (A176103) Sunny Oaks, Inc. v Dept. of Human Services
  • - 325 Or App   26 (A177329) Denning v. Board of Parole
  • - 325 Or App   31 (A174690) Manning v. Kelly
  • - 325 Or App   37 (A175868) Bush v. City of Prineville
  • - 325 Or App   64 (A176352) State v. Perez
  • - 325 Or App   71 (A179360) Champion v. Employment Dept.
  • - 325 Or App   76 (A175059) State v. Champagne
Nonprecedential Memorandum Opinions
  • - - - 325 Or App   90 (A174883) Orians v. State of Oregon
  • - 325 Or App   94 (A175931) State v. Lemmer
  • - 325 Or App   98 (A176386) State v. Morgan
  • - 325 Or App 101 (A179365) Dept. of Human Services v. M. E.
  • - 325 Or App 105 (A179265) Dept. of Human Services v. R. J. M.
  • - 325 Or App 107 (A173932) Urbina v. Cain
  • - 325 Or App 110 (A178135) Sherman v. Duff
Cases Affirmed Without Opinion

- 325 Or App 114

  • A176647 Anthony, Ryan Lawrence v. Board of Parole and Post-Prison Supervision
  • A176154 State v. Ferrara, Joseph Milton
  • A176387 State v. Griffie, Joshua Ryan
  • A176760 State v. Jones, Sheryl Lynn
  • A176578 State v. Larsen, Robert David
  • A176512 State v. Navarrete, Luis Silva Echeverria, aka Echeverrianavarrete, Luis Silva
  • A176553 State v. Ramirez-Ramirez, Roberto
  • A176583 State v. Scott, Craig Michael
  • A176287 State v. Wilson, Alexander Clinton Clark, aka Wilson, Alexander Clinton
  • A175982 State v. Zweygartt, Erik Shane

-
-
View additional Court of Appeals opinions in the - Opinions Digital Collection.
-
-
-
-
-
-
- -
-
-



-
-
-



-
-
- -
-
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
- -
-
-
-
-
-
- -
- - - - - -
- - - - - -
-
-
-
-
- - -
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- - -
- - - - - - - - - -
- -
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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