diff --git a/juriscraper/NewOpinionSite.py b/juriscraper/NewOpinionSite.py new file mode 100644 index 000000000..9be5c12e6 --- /dev/null +++ b/juriscraper/NewOpinionSite.py @@ -0,0 +1,440 @@ +from copy import deepcopy +from datetime import date, datetime +from functools import cmp_to_key +from typing import Dict, List, Union + +from juriscraper.AbstractSite import AbstractSite, logger +from juriscraper.lib.judge_parsers import normalize_judge_string +from juriscraper.lib.string_utils import ( + CaseNameTweaker, + clean_string, + convert_date_string, + harmonize, +) +from juriscraper.schemas.schema_validator import SchemaValidator + + +class NewOpinionSite(AbstractSite): + """ + Inherits from AbstractSite to access downloading and processing methods + + Overrides legacy methods which have to do with data transformation: + converting, cleaning and shaping data + + Validates cleaned cases using JSON Schema Validator + + The main entry point is `parse`. Keeps interface compatible + for courtlistener caller to consume + + Lifecycle of a scrape: + - scrape is handled by inheriting scraper. + For expected attribute naming style see `build_nested_object` docstring + - build nested objects as expected by the schema + - clean values + - propagate values which repeat across objects + - fill default values + - validate against JSON Schema + + Design heuristics: + Automate as much as possible, improve developer experience + Inheriting scraper should concern itself mostly with parsing the + page and assigning proper names to the values, not with building + the nested object expected by CL, nor with manually calling the + cleaning functions depending on the data type, nor with filling + default values + """ + + expected_content_types = ["application/pdf", "Application/pdf"] + is_cluster_site = True + has_deferred_fields = False + placeholder_url = "https://courtlistener.com/placeholder_opinion_url" + + # `judges` and `joined_by_str` refer to multiple judges + # if we pass a "symbol"-separated string of multiple judges + # `normalize_judge_string` may missinterpret it depending + # on the "symbol" . It is better that the scraper pass them as lists + + # Ingestion into the DB could be improved by adding extra descriptors + # of the judge's names, flags for full or partial names, a flag + # for "messy" string or only name included + judge_keys = { + "assigned_to_str", + "referred_to_str", + "judges", + "author_str", + "joined_by_str", + "ordering_judge_str", + } + + # For hash building + sort_keys = [ + "case_dates", + "case_names", + "download_urls", + ] + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.cases = [] + + self.schema_validator = SchemaValidator() + self.cnt = CaseNameTweaker() + # To be filled by inheriting classes + self.status = "" + + def __iter__(self): + yield from self.cases + + def __getitem__(self, index: int) -> Dict: + return self.cases[index] + + def __len__(self) -> int: + return len(self.cases) + + def parse(self): + """Overrides AbstractSite.parse""" + if not self.downloader_executed: + self.html = self._download() + self._process_html() + + self._post_parse() + + clean_cases = [] + for case in self.cases: + clean_case = self.clean_case(case) + + # Simulate getting deferred secondary page for example tests + if self.test_mode_enabled(): + clean_case = self.get_deferred_values( + "download_url", clean_case + ) + clean_case = self.get_deferred_values( + "other_values", clean_case + ) + clean_case.pop("original") + + clean_cases.append(clean_case) + + self.cases = clean_cases + self.cases.sort(key=cmp_to_key(self.sort_by_attributes), reverse=True) + + # Ordering is important for hash + # Hash will be used by caller to skip downloading binary content if page has + # already been seen + self.case_names = [case["Docket"]["case_name"] for case in self.cases] + self._make_hash() + + return self + + def clean_case(self, case: Dict) -> Dict: + """Clean and validate a scraped object. + Keep the original for updating in case deferred values will be got + + :param case: scraped object + :return: cleaned case + """ + original_case = deepcopy(case) + clean_case = self.build_nested_object(case) + self.fill_default_and_required_values(clean_case) + self.schema_validator.validate(clean_case.get("Docket")) + self.recast_dates(clean_case) + clean_case["original"] = original_case + + return clean_case + + def build_nested_object(self, case: Dict) -> Dict: + """Build nested object expected by CL and defined on JSON Schemas + + {Model Name}: {Naming convention} + Docket: field name preceded by "d." + OpinionCluster: field name preceded by "oc." + Opinion: expected to be returned as an object, with key "opinions" + OriginatingCourtInformation: expected to be returned as an object, with key "oci" + + :param case: case as returned by the scraper + + :return: Nested object as expected by CL + """ + cl_obj = {"Docket": {"OpinionCluster": {}}} + + for k, v in case.items(): + clean_value = self.clean_value(k, v) + if not clean_value or ( + isinstance(clean_value, list) and not any(clean_value) + ): + continue + + if "." in k: + obj, key = k.split(".") + if obj == "d": + cl_obj["Docket"][key] = clean_value + elif obj == "oc": + cl_obj["Docket"]["OpinionCluster"][key] = clean_value + elif k == "oci": + cl_obj["Docket"]["OriginatingCourtInformation"] = clean_value + elif k == "opinions": + ops = ( + [clean_value] + if isinstance(clean_value, dict) + else clean_value + ) + cl_obj["Docket"]["OpinionCluster"]["Opinions"] = ops + else: + # We may expect extra data to build the deferred requests here + logger.warning( + "Unsupported object when building nested object with key: '%s'. value: '%s'", + k, + v, + ) + + return cl_obj + + def recast_dates(self, clean_case: Dict) -> None: + """Converts datetime strings into Python `datetime.date` objects + + See `clean_value` docstring on dates for why we have to recast the dates + + :param clean_case: validated object + :return: None, modifies objects in place + """ + obj_x_date_fields = [ + ( + clean_case["Docket"]["OpinionCluster"], + ["date_filed", "date_blocked"], + ), + ( + clean_case["Docket"], + [ + "date_filed", + "date_terminated", + "date_last_filing", + "date_blocked", + ], + ), + ( + clean_case["Docket"].get("OriginatingCourtInformation", {}), + [ + "date_disposed", + "date_filed", + "date_judgment", + "date_judgment_eod", + "date_filed_noa", + "date_received_coa", + ], + ), + ] + + for obj, date_fields in obj_x_date_fields: + for df in date_fields: + if obj.get(df): + obj[df] = datetime.strptime(obj[df], "%Y-%m-%d").date() + + def clean_value( + self, key: str, value: Union[Dict, List, str] + ) -> Union[Dict, List, str, None]: + """Clean values recursively + + About dates: + Courtlistener expects Python `datetime.date` objects, which has no direct support + in JSON. At most, the validator supports `{"type": "string", "format": "date"}` + where the string format follows RFC 3339. So, we cast dates into strings, and will + recast them later after validation is passed + + :param key: field name, used to apply special cleaning functions + :param value: dict, list or string + + :return: cleaned value, with same input type + """ + if isinstance(value, dict): + return {k: self.clean_value(k, v) for k, v in value.items()} + if isinstance(value, list): + return [self.clean_value(key, item) for item in value] + + if value is None or not value: + return + + if key == "download_url": + value = value.strip() + else: + if isinstance(value, str): + if "date" in key: + value = str(convert_date_string(value)) + else: + value = clean_string(value) + elif isinstance(value, datetime): + value = str(value.date()) + elif isinstance(value, date): + value = str(value) + + if key in ["case_name", "docket_number"]: + value = harmonize(value) + elif key in self.judge_keys: + value = normalize_judge_string(value) + value = value[0] + + return value + + def fill_default_and_required_values(self, case: Dict) -> None: + """Fill default values and propagate values shared between objects + + Many default fields are taken from Courtlistener's + cl_scrape_opinions.make_objects + + :param case: nested object + :return None + """ + oc = case["Docket"]["OpinionCluster"] + d = case["Docket"] + + # Default fields + d["source"] = 2 + oc["source"] = "C" + + # Default if not filled + if not oc.get("date_filed_is_approximate"): + oc["date_filed_is_approximate"] = False + if not oc.get("blocked"): + oc["blocked"] = False + if not d.get("blocked"): + d["blocked"] = False + + # imitating cl_scrape_opinions.make_objects + if d.get("blocked") and not d.get("date_blocked"): + d["date_blocked"] = oc["date_blocked"] = date.today() + + if not oc.get("precedential_status"): + oc["precedential_status"] = ( + self.status if self.status else "Unknown" + ) + + # Propagate fields + if not oc.get("case_name") and d.get("case_name"): + oc["case_name"] = d["case_name"] + if not d.get("case_name") and oc.get("case_name"): + oc["case_name"] = d["case_name"] + if not d.get("case_name_short"): + case_name_short = self.cnt.make_case_name_short(d["case_name"]) + d["case_name_short"] = oc["case_name_short"] = case_name_short + + # correct field shapes + if oc.get("judges") and isinstance(oc["judges"], list): + oc["judges"] = ";".join(oc["judges"]) + for op in oc["Opinions"]: + if op.get("joined_by_str") and isinstance( + op["joined_by_str"], list + ): + op["joined_by_str"] = ";".join(op["joined_by_str"]) + + # Case for deferred download_url which is required by the validator + if not op.get("download_url") and self.has_deferred_fields: + op["download_url"] = self.placeholder_url + + def extract_from_text(self, scraped_text: str) -> Dict: + """Parses Courtlistener's objects out of the download + opinion document content + + :param scraped_text: May be HTML or plain_text + :return: Dict in the format expected by Courtlistener + """ + return {} + + def get_deferred_values(self, key: str, case: Dict) -> Dict: + """Get deferred values by `key` for a given case + Possible keys: download_url, other_values + + We can defer getting some values from secondary pages to + scrape the source more gently. If the site/object is duplicated, + we won't execute the network requests + + We have 2 duplication checks: + - site.hash: the hash of the ordered case_names, done after scraping a site's page + - documents content hash: done after getting the download_url + + So: + - `case_name` should never deferred, since it is used to compute the site hash + - `download_url` should wait until it's time to check it, in case + the site hash says we already have the data + - other values can wait after checking binary content hash + - deferred content should be get on a case by case basis, in case scrape + is aborted by consecutive duplicates + + :param key: "download_url" or "other_values" + :return: case (maybe the same, maybe changed) + """ + scraped_case = case["original"] + if key == "download_url": + updated = self.get_deferred_download_url(scraped_case) + elif key == "other_values": + updated = self.get_other_deferred_values(scraped_case) + + logger.info( + "Getting deferred values `%s` for case %s", key, str(scraped_case) + ) + + # Only clean again if the functions actually changed anything + if updated: + return self.clean_case(scraped_case) + + return case + + def get_deferred_download_url(self, case: Dict) -> bool: + """Get the Opinion download_url from a secondary page, and possibly other values + To be implemented by a specific site + + :param case: original scraped data, to be modified in place + :return: True if object was modified + """ + return False + + def get_other_deferred_values(self, case: Dict) -> bool: + """Get other values of interest from a secondary page + To be implemented by the specific site + + :param case: original scraped data, to be modified in place + :return: True if object was modified + """ + return False + + @staticmethod + def sort_by_attributes(case: Dict, other_case: Dict) -> int: + """Function passed as `key` argument to base `sort` + Replaces AbstractSite._date_sort + + Keeping the order of attributes as OpinionSite ensures we have the same order of cases + Order is important because a hash is calculated from ordered case names + + :param case: cleaned case + :param other_case: another cleaned case + :return 1 if first case is greater than second case + 0 if they are equal + -1 if first case is less than second + """ + oc = case["Docket"]["OpinionCluster"] + other_oc = other_case["Docket"]["OpinionCluster"] + + for index in range(3): + if index == 0: + value = oc["date_filed"] + other_value = other_oc["date_filed"] + elif index == 1: + value = case["Docket"]["case_name"] + other_value = other_case["Docket"]["case_name"] + elif index == 2: + value = oc["Opinions"][0]["download_url"] + other_value = other_oc["Opinions"][0]["download_url"] + + if value is None and other_value is None: + continue + elif other_value is None: + return 1 + elif value is None: + return -1 + + if value == other_value: + continue + elif value > other_value: + return 1 + else: + return -1 + + return 0 diff --git a/juriscraper/opinions/united_states/state/alaska.py b/juriscraper/opinions/united_states/state/alaska.py index 3433f9b40..7df3c9538 100644 --- a/juriscraper/opinions/united_states/state/alaska.py +++ b/juriscraper/opinions/united_states/state/alaska.py @@ -1,13 +1,15 @@ +from typing import Dict + from requests.exceptions import ChunkedEncodingError from juriscraper.lib.html_utils import ( get_row_column_links, get_row_column_text, ) -from juriscraper.OpinionSiteLinear import OpinionSiteLinear +from juriscraper.NewOpinionSite import NewOpinionSite, logger -class Site(OpinionSiteLinear): +class Site(NewOpinionSite): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ @@ -18,32 +20,93 @@ def __init__(self, *args, **kwargs): self.request["headers"]["user-agent"] = "Free Law Project" def _download(self, request_dict={}): - # Unfortunately, about 2/3 of calls are rejected by alaska but - # if we just ignore those encoding errors we can live with it + """ + Unfortunately, about 2/3 of calls are rejected by alaska but + if we just ignore those encoding errors we can live with it + """ try: return super()._download(request_dict) except ChunkedEncodingError: return None def _process_html(self) -> None: + """ + Have only seen combined opinions in this source + See for example: S17910 - State of Alaska v. John William McKelvey III + with opinion 7690 published on 3/8/2024. After the conclusion, it has a concurring opinion + Case link: + https://appellate-records.courts.alaska.gov/CMSPublic/Case/General?q=w6sobc/DATfJtIRGLf4mqQ==%27 + """ if not self.html: + logger.warning("Unable to load page from Alaska") return + for table in self.html.xpath("//table"): date = table.xpath("./preceding-sibling::h5")[0].text_content() for row in table.xpath(".//tr"): - if row.text_content().strip(): - # skip rows without PDF links in first column - try: - url = get_row_column_links(row, 1) - except IndexError: - continue - - self.cases.append( - { - "date": date, - "docket": get_row_column_text(row, 3), - "name": get_row_column_text(row, 4), - "citation": get_row_column_text(row, 5), - "url": url, - } - ) + if not row.text_content().strip(): + continue + case = {} + + # rows without PDF links in first column have the opinion + # link inside the case page + try: + url = get_row_column_links(row, 1) + except IndexError: + url = self.placeholder_url + case["case_page_link"] = get_row_column_links(row, 3) + + # Have only seen combined opinions in this source + case.update( + { + "oc.date_filed": date, + "d.docket_number": get_row_column_text(row, 3), + "d.case_name": get_row_column_text(row, 4), + "oc.citation_strings": [get_row_column_text(row, 5)], + "opinions": [{"download_url": url}], + } + ) + self.cases.append(case) + + def get_deferred_download_url(self, case: Dict) -> bool: + """ """ + # No need to go into case page, we already have the URL + if not case.get("case_page_link"): + return False + + link = case["case_page_link"] + + if self.test_mode_enabled(): + self.url = link + self._request_url_mock(link) + html = self._return_response_text_object() + else: + html = self._get_html_tree_by_url(link) + + nos, case["d.date_filed"] = html.xpath( + "//dl[dt[text()='Case Type:']]/dd/text()" + ) + case["oc.nature_of_suit"] = nos.split(" ", 1)[-1] + + # Parse opinion table + opinion_row = html.xpath("//tr[td[@title='Document Download']]")[0] + case["opinions"][0]["download_url"] = opinion_row.xpath("td/a/@href")[ + 0 + ] + case["oc.disposition"] = opinion_row.xpath("td[3]/text()")[0] + + # Parse lower court table + oci_row = html.xpath( + "//h5[text()='Lower Court or Agency Information']/following-sibling::table/tbody/tr" + ) + if oci_row: + oci_row = oci_row[0] + oci = { + "docket_number": oci_row.xpath("td[1]/text()")[0], + "date_judgment": oci_row.xpath("td[2]/text()")[0], + "assigned_to_str": oci_row.xpath("td[5]/text()")[0], + } + case["oci"] = oci + case["d.appeal_from_str"] = oci_row.xpath("td[4]/text()")[0] + + return True diff --git a/juriscraper/opinions/united_states/state/alaskactapp.py b/juriscraper/opinions/united_states/state/alaskactapp.py index 98d2f7399..b6bcd81db 100644 --- a/juriscraper/opinions/united_states/state/alaskactapp.py +++ b/juriscraper/opinions/united_states/state/alaskactapp.py @@ -1,4 +1,4 @@ -from . import alaska +from juriscraper.opinions.united_states.state import alaska class Site(alaska.Site): diff --git a/juriscraper/opinions/united_states/state/tex.py b/juriscraper/opinions/united_states/state/tex.py index 178ca9e7e..9e0d9ab0e 100644 --- a/juriscraper/opinions/united_states/state/tex.py +++ b/juriscraper/opinions/united_states/state/tex.py @@ -15,17 +15,34 @@ # - 2015-08-19: Updated by Andrei Chelaru to add backwards scraping support. # - 2015-08-27: Updated by Andrei Chelaru to add explicit waits # - 2021-12-28: Updated by flooie to remove selenium. - +# - 2023-03-08: Updated by grossir to collect more data +import re from datetime import date, timedelta -from typing import Optional +from typing import Dict, List + +from dateutil import parser +from lxml import html as lxmlHTML from juriscraper.AbstractSite import logger -from juriscraper.DeferringList import DeferringList from juriscraper.lib.string_utils import titlecase -from juriscraper.OpinionSiteLinear import OpinionSiteLinear +from juriscraper.NewOpinionSite import NewOpinionSite -class Site(OpinionSiteLinear): +class Site(NewOpinionSite): + oci_mapper = { + # Court of Appelas Information + "COA Case": "docket_number", + "COA District": "origin_court", + "COA Justice": "assigned_to_str", + "Opinion Cite": "citation", # may contain date data + # Trial Court Information + "Court Case": "docket_number", + "Court Judge": "assigned_to_str", + "Court": "origin_court", + "Reporter": "court_reporter", + ## Extra available fields: "Punishment", "County" + } + rows_xpath = ( "//table[@class='rgMasterTable']/tbody/tr[not(@class='rgNoRecords')]" ) @@ -36,6 +53,7 @@ def __init__(self, *args, **kwargs): self.checkbox = 0 self.status = "Published" self.url = "https://search.txcourts.gov/CaseSearch.aspx?coa=cossup" + self.seen_case_urls = set() def _set_parameters( self, @@ -94,48 +112,232 @@ def _process_html(self) -> None: self.html = super()._download() for row in self.html.xpath(self.rows_xpath): - # In texas we also have to ping the case page to get the name - # this is unfortunately part of the process. - self.cases.append( - { - "date": row.xpath("td[2]")[0].text_content(), - "docket": row.xpath("td[5]")[0].text_content().strip(), - "url": row.xpath(".//a")[1].get("href"), - } - ) + # `Document search` page returns OpinionClusters separated, + # each opinion in a single row. We keep track to skip if we already parsed the case + case_url = row.xpath(".//a")[2].get("href") + if case_url in self.seen_case_urls: + continue + self.seen_case_urls.add(case_url) - def _get_case_names(self) -> DeferringList: - """Get case names using a deferring list.""" - seeds = [] - for row in self.html.xpath(self.rows_xpath): - # In texas we also have to ping the case page to get the name - # this is unfortunately part of the process. - seeds.append(row.xpath(".//a")[2].get("href")) - - def get_name(link: str) -> Optional[str]: - """Abstract out the case name from the case page.""" - if self.test_mode_enabled(): - return "No case names fetched during tests." + parsed = self.parse_case_page(case_url) + parsed["oc.date_filed"] = row.xpath("td[2]")[0].text_content() + parsed["d.docket_number"] = row.xpath("td[5]")[0].text_content() + + if not parsed.get("opinions"): + opinion = {"download_url": row.xpath(".//a")[1].get("href")} + parsed["opinions"] = [opinion] + else: + judges, dispositions = [], [] + for op in parsed["opinions"]: + judges.extend(op.get("joined_by_str", [])) + judges.append(op.get("author_str")) + dispositions.append(op.pop("disposition", "")) + parsed["oc.judges"] = list(filter(bool, judges)) + parsed["oc.disposition"] = self.get_cluster_disposition( + dispositions + ) + + self.cases.append(parsed) + + def parse_case_page(self, link: str) -> Dict: + """Parses the case page + + Usually we would defer getting extra data until dup checking + is done by the caller. However, we get the `case_name` from this + page, which is need for site hash computing, which cannot be deferred + + :param link: url of the case page + :return: parsed case dictionary + """ + parsed = {} + if self.test_mode_enabled(): + # Support "sub" pages on test_ScraperExampleTest by modifying + # the href attribute of the case page, to point to the proper local file + self.url = link + self._request_url_mock(link) + html = self._return_response_text_object() + else: html = self._get_html_tree_by_url(link) - try: - plaintiff = html.xpath( - '//label[contains(text(), "Style:")]/parent::div/following-sibling::div/text()' - )[0].strip() - defendant = html.xpath( - '//label[contains(text(), "v.:")]/parent::div/following-sibling::div/text()' - )[0].strip() - - # In many cases the court leaves off the plaintiff (The State of Texas). But - # in some of these cases the appellant is ex parte. So we need to - # add the state of texas in some cases but not others. - if defendant: - return titlecase(f"{plaintiff} v. {defendant}") - elif "WR-" not in link: - return titlecase(f"{plaintiff} v. The State of Texas") - else: - return titlecase(f"{plaintiff}") - except IndexError: - logger.warning(f"No title or defendant found for {self.url}") - return None - - return DeferringList(seed=seeds, fetcher=get_name) + + parsed["d.case_name"] = self.get_name(html, link) + parsed["d.date_filed"] = self.get_by_label_from_case_page( + html, "Date Filed:" + ) + + # For example: + # on texapp: "Protective Order", "Contract", "Personal Injury" + # on tex: "Petition for Review originally filed as 53.7(f)" + parsed["oc.nature_of_suit"] = self.get_by_label_from_case_page( + html, "Case Type:" + ) + parsed["opinions"] = self.get_opinions(html) + + coa_id, trial_id = ( + "ctl00_ContentPlaceHolder1_divCOAInfo", + "ctl00_ContentPlaceHolder1_pnlTrialCourt2", + ) + oci = None + if self.checkbox in [0, 1]: + oci = self.parse_originating_court_info(html, coa_id) + if oci: + parsed["d.appeal_from_str"] = oci.pop("origin_court", "") + if parsed["d.appeal_from_str"]: + parsed["d.appeal_from_id"] = "texapp" + if not oci: + oci = self.parse_originating_court_info(html, trial_id) + parsed["d.appeal_from_str"] = oci.pop("origin_court", "") + + parsed["oci"] = oci + + # Further work: + # we could extract people_db models: Party, Attorneys, PartyType + return parsed + + def parse_originating_court_info( + self, html: lxmlHTML, table_id: str + ) -> Dict: + """Parses Originating Court Information section + + Some Supreme Court or texcrimapp cases have OCI for both Appeals + and Trial courts. In Courtlistener, OCI and Docket have a 1-1 relation, + so we can only pick one + + Example: https://search.txcourts.gov/Case.aspx?cn=22-0431&coa=cossup + + :param html: object for aplying selectors + :table_id: either COA or Trial Courts information tables + + :return: dict with parsed OCI data + """ + labels = html.xpath( + f"//div[@id='{table_id}']//div[@class='span2']/label/text()" + ) + values = html.xpath(f"//div[@id='{table_id}']//div[@class='span4']") + + data = {} + for lab, val in zip(labels, values): + key = self.oci_mapper.get(lab.strip()) + val = ( + val.xpath("div/a/text()")[0] + if val.xpath("div/a") + else val.xpath("text()[last()]")[0] + ) + if not key or not val.strip(): + continue + data[key] = val.strip() + + if "COA" in table_id: + citation = data.pop("citation", "") + if "," in citation: + _, data["date_judgment"] = citation.split(",") + elif "-" in citation or "/" in citation: + try: + data["date_judgment"] = parser.parse(citation).date() + except parser.ParserError: + pass + + return data + + def get_name(self, html: lxmlHTML, link: str) -> str: + """Abstract out the case name from the case page.""" + try: + plaintiff = self.get_by_label_from_case_page(html, "Style:") + defendant = self.get_by_label_from_case_page(html, "v.:") + + # In many cases the court leaves off the plaintiff (The State of Texas). But + # in some of these cases the appellant is ex parte. So we need to + # add the state of texas in some cases but not others. + if defendant: + return titlecase(f"{plaintiff} v. {defendant}") + elif "WR-" not in link: + return titlecase(f"{plaintiff} v. The State of Texas") + else: + return titlecase(f"{plaintiff}") + except IndexError: + logger.warning(f"No title or defendant found for {self.url}") + return "" + + def get_opinions(self, html: lxmlHTML) -> List[Dict]: + """Parses opinions present in case page. + If we fail to find any opinions here, the scraper will default to using + the URL in the search results page + + `tex`, `texcrimapp` and `texapp_*` differ on how opinions are presented, + so this method is overridden in inheriting classes so as to not + overcrowd it with all the if clauses + + Examples: + + Cluster with 3 opinions (Supreme Court) + https://search.txcourts.gov/Case.aspx?cn=22-0242&coa=cossup + + Counter Examples: + 'Opinion' text does not appear on 'Event Type' column; but there is indeed an opinion + https://search.txcourts.gov/Case.aspx?cn=21-1008&coa=cossup + + :param html: page's HTML object + :return List of opinions + """ + opinions = [] + opinion_xpath = "//div[div[contains(text(), 'Case Events')]]//tr[td[contains(text(), 'pinion issu')]]" + for opinion in html.xpath(opinion_xpath): + op = {} + link = opinion.xpath(".//td//a/@href") + if not link: + continue + op["download_url"] = link[0] + op["disposition"] = opinion.xpath(".//td[3]/text()")[0] + + # Remarks may contain Per Curiam flag. Does not exist in texcrim + remark = opinion.xpath(".//td[4]/text()")[0] + if "per curiam" in remark.lower(): + op["per_curiam"] = True + + author_match = re.search( + r"(?P[A-Z][a-z-]+)\s+filed\s+a", remark + ) + if author_match: + op["author_str"] = author_match.group("judge") + + joined_match = re.findall( + r"Justice\s+(?P[A-Z][a-z-]+) (?!filed)(?!delivered)", + remark, + ) + if joined_match: + op["joined_by_str"] = joined_match + + op_type = opinion.xpath(".//td[2]/text()")[0].lower() + if "concur" in op_type: + op["type"] = "030concurrence" + elif "diss" in op_type: + op["type"] = "040dissent" + else: + op["type"] = "010combined" + + opinions.append(op) + + return opinions + + def get_cluster_disposition(self, dispositions: List) -> str: + """Get oc.disposition from each opinion's disposition value + + In tex, disposition ir is usually the longest string. + On texcrimapp, disposition is the same for all opinions + In texapp_*, disposition is found on the 'main' opinion + + :param dispositions: disposition strings + :return: dispositon of the cluster + """ + return sorted(dispositions, key=len)[-1] + + def get_by_label_from_case_page(self, html: lxmlHTML, label: str) -> str: + """Selects from first / main table of case page + + :param html: HTML object that supports selection + :param label: label to be used in selector + + :return case page string value + """ + xpath = f'//label[contains(text(), "{label}")]/parent::div/following-sibling::div/text()' + value = html.xpath(xpath) + return value[0].strip() if value else "" diff --git a/juriscraper/opinions/united_states/state/texapp_1.py b/juriscraper/opinions/united_states/state/texapp_1.py index 6c4311037..f955f0d4a 100644 --- a/juriscraper/opinions/united_states/state/texapp_1.py +++ b/juriscraper/opinions/united_states/state/texapp_1.py @@ -5,6 +5,8 @@ # Reviewer: # Date: 2014-07-10 +from datetime import datetime +from typing import Dict, List from juriscraper.opinions.united_states.state import tex @@ -15,3 +17,54 @@ def __init__(self, *args, **kwargs): self.court_id = self.__module__ self.court_name = "capp_1" self.checkbox = 2 + + def get_opinions(self, html) -> List[Dict]: + """Override from tex.py. See docstring there for more info + + Some texapp courts mark the 'Judgement' document + as having a 'Opinion' type. For example, texapp 4 and 6. + These are skipped + + On some case pages, the Court of Criminal Appeals opinion appears + in the lower court. See texapp_12_subexample_2 + + Some cases have been re-heard in the same court, or remanded, + and their pages have multiple opinions that do not belong + to the same cluster. See texapp_10_subexample_3 + + :param html: page's HTML object + :return List of opinions + """ + first_opinion_date = None + opinions = [] + opinion_xpath = "//div[div[contains(text(), 'Case Events')]]//tr[td[contains(text(), 'pinion issued')]]" + link_xpath = ".//tr[td[1]/a and td[2][contains(text(), 'pinion') or normalize-space(text())='CCA']]" + for opinion in html.xpath(opinion_xpath): + op = {} + link = opinion.xpath(link_xpath) + if not link: + continue + + opinion_date = datetime.strptime( + opinion.xpath(".//td[1]/text()")[0], "%m/%d/%Y" + ).date() + if not first_opinion_date: + first_opinion_date = opinion_date + elif (first_opinion_date - opinion_date).days > 10: + # Older opinion cluster + continue + + op["disposition"] = opinion.xpath(".//td[3]/text()")[0] + op["download_url"] = link[0].xpath("td/a/@href")[0] + + op_type = link[0].xpath("td[2]/text()")[0].strip().lower() + if "concur" in op_type: + op["type"] = "030concurrence" + elif "diss" in op_type: + op["type"] = "040dissent" + else: + op["type"] = "010combined" + + opinions.append(op) + + return opinions diff --git a/juriscraper/opinions/united_states/state/texapp_10.py b/juriscraper/opinions/united_states/state/texapp_10.py index 3d42dd569..ad398f016 100644 --- a/juriscraper/opinions/united_states/state/texapp_10.py +++ b/juriscraper/opinions/united_states/state/texapp_10.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_11.py b/juriscraper/opinions/united_states/state/texapp_11.py index 2a4681a45..0ff163a9b 100644 --- a/juriscraper/opinions/united_states/state/texapp_11.py +++ b/juriscraper/opinions/united_states/state/texapp_11.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_12.py b/juriscraper/opinions/united_states/state/texapp_12.py index f771fe306..9ee38de49 100644 --- a/juriscraper/opinions/united_states/state/texapp_12.py +++ b/juriscraper/opinions/united_states/state/texapp_12.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_13.py b/juriscraper/opinions/united_states/state/texapp_13.py index 5e5e55fbb..b797e641a 100644 --- a/juriscraper/opinions/united_states/state/texapp_13.py +++ b/juriscraper/opinions/united_states/state/texapp_13.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_14.py b/juriscraper/opinions/united_states/state/texapp_14.py index 0cd9181a4..f1728db48 100644 --- a/juriscraper/opinions/united_states/state/texapp_14.py +++ b/juriscraper/opinions/united_states/state/texapp_14.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_2.py b/juriscraper/opinions/united_states/state/texapp_2.py index 47e46f79c..c19a7cea4 100644 --- a/juriscraper/opinions/united_states/state/texapp_2.py +++ b/juriscraper/opinions/united_states/state/texapp_2.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_3.py b/juriscraper/opinions/united_states/state/texapp_3.py index 9568f9af8..3f978a128 100644 --- a/juriscraper/opinions/united_states/state/texapp_3.py +++ b/juriscraper/opinions/united_states/state/texapp_3.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_4.py b/juriscraper/opinions/united_states/state/texapp_4.py index 031aa4f7f..c55372ee1 100644 --- a/juriscraper/opinions/united_states/state/texapp_4.py +++ b/juriscraper/opinions/united_states/state/texapp_4.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_5.py b/juriscraper/opinions/united_states/state/texapp_5.py index 6b71c3c65..f7ae23a9a 100644 --- a/juriscraper/opinions/united_states/state/texapp_5.py +++ b/juriscraper/opinions/united_states/state/texapp_5.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_6.py b/juriscraper/opinions/united_states/state/texapp_6.py index 093708967..7673bbda4 100644 --- a/juriscraper/opinions/united_states/state/texapp_6.py +++ b/juriscraper/opinions/united_states/state/texapp_6.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_7.py b/juriscraper/opinions/united_states/state/texapp_7.py index daec4023b..8fd2bd286 100644 --- a/juriscraper/opinions/united_states/state/texapp_7.py +++ b/juriscraper/opinions/united_states/state/texapp_7.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_8.py b/juriscraper/opinions/united_states/state/texapp_8.py index d84f9b114..a91e0413f 100644 --- a/juriscraper/opinions/united_states/state/texapp_8.py +++ b/juriscraper/opinions/united_states/state/texapp_8.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texapp_9.py b/juriscraper/opinions/united_states/state/texapp_9.py index b4f9681e9..5b2763093 100644 --- a/juriscraper/opinions/united_states/state/texapp_9.py +++ b/juriscraper/opinions/united_states/state/texapp_9.py @@ -6,10 +6,10 @@ # Date: 2014-07-10 -from juriscraper.opinions.united_states.state import tex +from juriscraper.opinions.united_states.state import texapp_1 -class Site(tex.Site): +class Site(texapp_1.Site): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.court_id = self.__module__ diff --git a/juriscraper/opinions/united_states/state/texcrimapp.py b/juriscraper/opinions/united_states/state/texcrimapp.py index 340663265..7a24736ee 100644 --- a/juriscraper/opinions/united_states/state/texcrimapp.py +++ b/juriscraper/opinions/united_states/state/texcrimapp.py @@ -6,6 +6,8 @@ # Date: 2015-09-02 +from typing import Dict, List + from juriscraper.opinions.united_states.state import tex @@ -15,3 +17,35 @@ def __init__(self, *args, **kwargs): self.court_id = self.__module__ self.court_name = "ccrimapp" self.checkbox = 1 + + def get_opinions(self, html) -> List[Dict]: + """Override from tex.py. See docstring there for more info + + :param html: page's HTML object + :return List of opinions + """ + opinions = [] + opinion_xpath = "//div[div[contains(text(), 'Case Events')]]//tr[td[text()='OPINION ISSD']]" + link_xpath = ( + ".//tr[td[1]/a and td[2][not(contains(text(), 'Notice'))]]" + ) + for opinion in html.xpath(opinion_xpath): + op = {} + link = opinion.xpath(link_xpath) + if not link: + continue + + op["disposition"] = opinion.xpath(".//td[3]/text()")[0] + op["download_url"] = link[0].xpath("td/a/@href")[0] + + op_type = link[0].xpath("td[2]/text()")[0].strip() + if op_type == "Original": + op["type"] = "010combined" + elif op_type == "Dissenting": + op["type"] = "040dissent" + elif op_type == "Concurring": + op["type"] = "030concurrence" + + opinions.append(op) + + return opinions diff --git a/juriscraper/schemas/Citation.json b/juriscraper/schemas/Citation.json new file mode 100644 index 000000000..0e3a34a17 --- /dev/null +++ b/juriscraper/schemas/Citation.json @@ -0,0 +1,38 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://courtlistener.com/schemas/Citation.json", + "title": "Citation", + "description": "", + "type": "object", + "additionalProperties": false, + "properties": { + "volume": { + "type": "integer" + }, + "reporter": { + "type": "string" + }, + "page": { + "type": "string" + }, + "type": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "description": "1 - Federal; 2 - State; 3 - State Regional; 4 - Specialty; 5 - Scotus Early; 6 - Lexis; 7 - West; 8 - Neutral" + } + }, + "required": [ + "volume", + "reporter", + "page", + "type" + ] +} \ No newline at end of file diff --git a/juriscraper/schemas/Docket.json b/juriscraper/schemas/Docket.json new file mode 100644 index 000000000..42e73920d --- /dev/null +++ b/juriscraper/schemas/Docket.json @@ -0,0 +1,85 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://courtlistener.com/schemas/Docket.json", + "title": "Docket", + "description": "A Courtlistener Docket object. The schemas correspond to Courtlistener's Django models, which mirror the DB models. These schemas should be updated when the CL models are updated. We keep the comments on the fields to a minimal. For further documentation check CL models.py files.", + "type": "object", + "additionalProperties": false, + "properties": { + "source": { + "enum": [ + 2 + ] + }, + "court": { + "type": "string" + }, + "appeal_from_str": { + "type": "string" + }, + "appeal_from_id": { + "type": "string", + "description": "Court ID in Courtlistener, which is a lowercase abbreviation of the court name" + }, + "assigned_to_str": { + "type": "string" + }, + "referred_to_str": { + "type": "string" + }, + "panel_str": { + "type": "string" + }, + "date_filed": { + "type": "string", + "format": "date" + }, + "date_terminated": { + "type": "string", + "format": "date" + }, + "date_last_filing": { + "type": "string", + "format": "date" + }, + "case_name": { + "type": "string" + }, + "case_name_short": { + "type": "string" + }, + "case_name_full": { + "type": "string" + }, + "docket_number": { + "type": "string" + }, + "cause": { + "type": "string" + }, + "jury_demand": { + "type": "string" + }, + "appellate_fee_status": { + "type": "string" + }, + "date_blocked": { + "type": "string", + "format": "date" + }, + "blocked": { + "type": "boolean" + }, + "OriginatingCourtInformation": { + "$ref": "https://courtlistener.com/schemas/OriginatingCourtInformation.json#" + }, + "OpinionCluster": { + "$ref": "https://courtlistener.com/schemas/OpinionCluster.json#" + } + }, + "required": [ + "docket_number", + "case_name", + "OpinionCluster" + ] +} \ No newline at end of file diff --git a/juriscraper/schemas/Opinion.json b/juriscraper/schemas/Opinion.json new file mode 100644 index 000000000..43ea549d2 --- /dev/null +++ b/juriscraper/schemas/Opinion.json @@ -0,0 +1,45 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://courtlistener.com/schemas/Opinion.json", + "title": "Opinion", + "description": "", + "type": "object", + "additionalProperties": false, + "properties": { + "author_str": { + "type": "string" + }, + "per_curiam": { + "type": "boolean" + }, + "joined_by_str": { + "type": "string" + }, + "page_count": { + "type": "integer" + }, + "download_url": { + "type": "string", + "format": "uri" + }, + "type": { + "enum": [ + "010combined", + "015unamimous", + "020lead", + "025plurality", + "030concurrence", + "035concurrenceinpart", + "040dissent", + "050addendum", + "060remittitur", + "070rehearing", + "080onthemerits", + "090onmotiontostrike" + ] + } + }, + "required": [ + "download_url" + ] +} \ No newline at end of file diff --git a/juriscraper/schemas/OpinionCluster.json b/juriscraper/schemas/OpinionCluster.json new file mode 100644 index 000000000..eb4a03d78 --- /dev/null +++ b/juriscraper/schemas/OpinionCluster.json @@ -0,0 +1,135 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://courtlistener.com/schemas/OpinionCluster.json", + "title": "OpinionCluster", + "description": "", + "type": "object", + "additionalProperties": false, + "properties": { + "judges": { + "type": "string" + }, + "date_filed": { + "type": "string", + "format": "date" + }, + "date_filed_is_approximate": { + "type": "boolean" + }, + "case_name_short": { + "type": "string" + }, + "case_name": { + "type": "string" + }, + "case_name_full": { + "type": "string" + }, + "scdb_votes_minority": { + "type": "integer" + }, + "scdb_votes_majority": { + "type": "integer" + }, + "scdb_id": { + "type": "string" + }, + "attorneys": { + "type": "string" + }, + "procedural_history": { + "type": "string" + }, + "nature_of_suit": { + "type": "string" + }, + "disposition": { + "type": "string" + }, + "posture": { + "type": "string" + }, + "syllabus": { + "type": "string" + }, + "headnotes": { + "type": "string" + }, + "summary": { + "type": "string" + }, + "history": { + "type": "string" + }, + "other_dates": { + "type": "string" + }, + "cross_reference": { + "type": "string" + }, + "correction": { + "type": "string" + }, + "date_blocked": { + "type": "string", + "format": "date" + }, + "blocked": { + "type": "boolean" + }, + "arguments": { + "type": "string" + }, + "headmatter": { + "type": "string" + }, + "precedential_status": { + "enum": [ + "Published", + "Unpublished", + "Errata", + "Separate", + "In-chambers", + "Relating-to", + "Unknown" + ] + }, + "source": { + "enum": [ + "C" + ] + }, + "Opinions": { + "type": "array", + "minItems": 1, + "items": [ + { + "$ref": "https://courtlistener.com/schemas/Opinion.json#" + } + ] + }, + "Citations": { + "type": "array", + "minItems": 1, + "items": [ + { + "$ref": "https://courtlistener.com/schemas/Citation.json#" + } + ] + }, + "citation_strings": { + "type": "array", + "minItems": 1, + "items": { + "type": "string" + } + } + }, + "required": [ + "date_filed", + "date_filed_is_approximate", + "case_name", + "precedential_status", + "Opinions" + ] +} \ No newline at end of file diff --git a/juriscraper/schemas/OriginatingCourtInformation.json b/juriscraper/schemas/OriginatingCourtInformation.json new file mode 100644 index 000000000..1139e02db --- /dev/null +++ b/juriscraper/schemas/OriginatingCourtInformation.json @@ -0,0 +1,46 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://courtlistener.com/schemas/OriginatingCourtInformation.json", + "title": "OriginatingCourtInformation", + "description": "Has a one to one relationship to Docket", + "type": "object", + "additionalProperties": false, + "properties": { + "docket_number": { + "type": "string" + }, + "assigned_to_str": { + "type": "string" + }, + "ordering_judge_str": { + "type": "string" + }, + "court_reporter": { + "type": "string" + }, + "date_disposed": { + "type": "string", + "format": "date" + }, + "date_filed": { + "type": "string", + "format": "date" + }, + "date_judgment": { + "type": "string", + "format": "date" + }, + "date_judgment_eod": { + "type": "string", + "format": "date" + }, + "date_filed_noa": { + "type": "string", + "format": "date" + }, + "date_received_coa": { + "type": "string", + "format": "date" + } + } +} \ No newline at end of file diff --git a/juriscraper/schemas/__init__.py b/juriscraper/schemas/__init__.py new file mode 100644 index 000000000..5ee36f724 --- /dev/null +++ b/juriscraper/schemas/__init__.py @@ -0,0 +1,3 @@ +__all__ = [ + "schema_validator", +] diff --git a/juriscraper/schemas/schema_validator.py b/juriscraper/schemas/schema_validator.py new file mode 100644 index 000000000..e4dd523b3 --- /dev/null +++ b/juriscraper/schemas/schema_validator.py @@ -0,0 +1,91 @@ +import json +from pathlib import Path +from typing import Dict + +import requests +from jsonschema import Draft7Validator, FormatChecker +from referencing import Registry, Resource, exceptions + + +def retrieve_from_filesystem(uri: str): + """Resolve the schema URLs to Juriscraper's folder organization + + :param uri: URL value of $ref / $id in a schema + :return: content of schema + """ + schema_folder = Path(__file__).parent + path = schema_folder / Path( + uri.replace("https://courtlistener.com/schemas/", "") + ) + contents = json.loads(path.read_text()) + + return Resource.from_contents(contents) + + +def retrieve_from_github(uri: str): + """Retrieve JSON from github + + `retrieve_from_filesystem` won't work with Docker + + :param uri: URL value of $ref / $id in a schema + :return: content of schema + """ + # TODO: this will need to be changed to the proper repo before merge + gh = "https://raw.githubusercontent.com/grossir/juriscraper/new_opinion_site_subclass/juriscraper/schemas/" + uri = uri.replace("https://courtlistener.com/schemas/", gh) + + return Resource.from_contents(requests.get(uri).json()) + + +class SchemaValidator: + """ + The JSON schemas map closely to Courtlistener's Django Models + They are missing "Reference" or foreign key fields, which need to be + looked up in the DB and will be built up using some string values + For example: OpinionCluster.judges or Opinion.author_str + + Some extra fields that do not map to the Django/DB models: + OpinionCluster.citation_strings + Citations are parsed using `eyecite` on the caller side, so we pass + them as strings if we find them. Some citations may be passed as + proper objects, when the parsing is straightforward + + About types: + JSON format does not support "date" or "datetime" types, but it can + enforce the "date" format on a "string" type. This requires the package + `rfc3339-validator` + In order for the format checker to work, a FormatChecker object must + be explicitly passed to the validator instance + + About `"additionalProperties": false` in the schemas: + By default, the schema allows any unspecified property + In Courtlistener we create objects from the returned JSON like this:: + `opinion = Opinion(**opinion_json)` + so any additional property not expected by the model will break it + """ + + def __init__(self): + """ + $id and $ref in the JSON Schema are URLs. + Since we are serving these from files, we need to create a special Registry + """ + docket_schema_id = "https://courtlistener.com/schemas/Docket.json" + try: + registry = Registry(retrieve=retrieve_from_filesystem) + docket_schema = registry.get_or_retrieve(docket_schema_id) + except exceptions.Unretrievable: + registry = Registry(retrieve=retrieve_from_github) + docket_schema = registry.get_or_retrieve(docket_schema_id) + + self.validator = Draft7Validator( + docket_schema.value.contents, + registry=registry, + format_checker=FormatChecker(), + ) + + def validate(self, obj: Dict) -> None: + """Calls the validator + + :raises: ValidationError if the object is invalid + """ + self.validator.validate(obj) diff --git a/requirements.txt b/requirements.txt index e4f8477c1..cdf814173 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,8 @@ python-dateutil>=2.8.2 requests>=2.20.0 selenium>=4.9.1 tldextract +jsonschema==4.21.1 +jsonschema-specifications==2023.12.1 +referencing==0.32.1 +rfc3339-validator==0.1.4 +rfc3986==2.0.0 \ No newline at end of file diff --git a/sample_caller.py b/sample_caller.py index 749d7bc54..495dd28f6 100755 --- a/sample_caller.py +++ b/sample_caller.py @@ -41,62 +41,74 @@ def scrape_court(site, binaries=False): """ exceptions = defaultdict(list) for item in site: - # First turn the download urls into a utf-8 byte string - item_download_urls = item["download_urls"].encode("utf-8") - # Percent encode URLs (this is a Python wart) - download_url = parse.quote( - item_download_urls, safe="%/:=&?~#+!$,;'@()*[]" - ) + # On the Courtlistener caller, executing a download_url deferred request + # would happen after checking the case_name hash duplicate + item = site.get_deferred_values("download_url", item) - if binaries: - try: - opener = request.build_opener() - for cookie_dict in site.cookies: - opener.addheaders.append( - ( - "Cookie", - f"{cookie_dict['name']}={cookie_dict['value']}", + # First turn the download urls into a utf-8 byte string + if getattr(site, "is_cluster_site", False): + item_download_urls = [ + op["download_url"] + for op in item["Docket"]["OpinionCluster"]["Opinions"] + ] + else: + item_download_urls = [item["download_urls"].encode("utf-8")] + + for url in item_download_urls: + # Percent encode URLs (this is a Python wart) + download_url = parse.quote(url, safe="%/:=&?~#+!$,;'@()*[]") + + if binaries: + try: + opener = request.build_opener() + for cookie_dict in site.cookies: + opener.addheaders.append( + ( + "Cookie", + f"{cookie_dict['name']}={cookie_dict['value']}", + ) ) - ) - r = opener.open(download_url) - expected_content_types = site.expected_content_types - response_type = r.headers.get("Content-Type", "").lower() - # test for expected content type response - if ( - expected_content_types - and response_type not in expected_content_types - ): + r = opener.open(download_url) + expected_content_types = site.expected_content_types + response_type = r.headers.get("Content-Type", "").lower() + # test for expected content type response + if ( + expected_content_types + and response_type not in expected_content_types + ): + exceptions["DownloadingError"].append(download_url) + v_print(3, f"DownloadingError: {download_url}") + v_print(3, traceback.format_exc()) + data = r.read() + + # test for empty files (thank you CA1) + if len(data) == 0: + exceptions["EmptyFileError"].append(download_url) + v_print(3, f"EmptyFileError: {download_url}") + v_print(3, traceback.format_exc()) + continue + except Exception: exceptions["DownloadingError"].append(download_url) v_print(3, f"DownloadingError: {download_url}") v_print(3, traceback.format_exc()) - data = r.read() - - # test for empty files (thank you CA1) - if len(data) == 0: - exceptions["EmptyFileError"].append(download_url) - v_print(3, f"EmptyFileError: {download_url}") - v_print(3, traceback.format_exc()) continue - except Exception: - exceptions["DownloadingError"].append(download_url) - v_print(3, f"DownloadingError: {download_url}") - v_print(3, traceback.format_exc()) - continue - # Extract the data using e.g. antiword, pdftotext, etc., then - # clean it up. - data = extract_doc_content(data) - data = site.cleanup_content(data) - - # Normally, you'd do your save routines here... - v_print(1, "\nAdding new item:") - for k, v in item.items(): - if isinstance(v, str): - value = trunc(v, 200, ellipsis="...") - v_print(1, f' {k}: "{value}"') - else: - # Dates and such... - v_print(1, f" {k}: {v}") + # Extract the data using e.g. antiword, pdftotext, etc., then + # clean it up. + data = extract_doc_content(data) + data = site.cleanup_content(data) + + item = site.get_deferred_values("other_values", item) + + # Normally, you'd do your save routines here... + v_print(1, "\nAdding new item:") + for k, v in item.items(): + if isinstance(v, str): + value = trunc(v, 200, ellipsis="...") + v_print(1, f' {k}: "{value}"') + else: + # Dates and such... + v_print(1, f" {k}: {v}") v_print(3, f"\n{site.court_id}: Successfully crawled {len(site)} items.") return {"count": len(site), "exceptions": exceptions} diff --git a/tests/examples/opinions/united_states/alaska_example.compare.json b/tests/examples/opinions/united_states/alaska_example.compare.json index fbef7cc13..58f1eae52 100644 --- a/tests/examples/opinions/united_states/alaska_example.compare.json +++ b/tests/examples/opinions/united_states/alaska_example.compare.json @@ -1,574 +1,129 @@ [ { - "case_dates": "2019-11-01", - "case_names": "Nicholas Ryan Dunn v. Dakota Christine Jones", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7416&caseNumber=S16685&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16685", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-11-01", - "case_names": "Keilan Ebli v. State of Alaska, Department of Corrections", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7418&caseNumber=S16916&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16916", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-11-01", - "case_names": "Joy B v. Everett B", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7417&caseNumber=S17129&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S17129", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-17", - "case_names": "In the Matter of the Necessity for the Hospitalization of Luciano G.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7415&caseNumber=S16654&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16654", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-11", - "case_names": "Annette H. v. State of Alaska, Department of Health & Social Services, Office of Children's Services", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7414&caseNumber=S17290&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S17290", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-11", - "case_names": "Alaska Public Defender Agency v. Superior Court", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7413&caseNumber=S16983&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16983", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "Thomas Taffe and Devony Lehner v. First National Bank of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7411&caseNumber=S16854&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16854", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "Ray M. Collins and Carol J. Collins v. David W. Hall and Margaret R. Hall, as Trustees of the D&M Hall Community Property Trust, dated March 14, 2005", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7410&caseNumber=S16795&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16795", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "Kyoko Perry v. Adam Perry", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7409&caseNumber=S17184&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S17184", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "In the Matter of the Necessity for the Hospitalization of G.L.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7412&caseNumber=S16928&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16928", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-13", - "case_names": "In the Matter of the Necessity of the Hospitalization of Lucy G.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7407&caseNumber=S16697&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16697", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-13", - "case_names": "Farthest North Girl Scout Council, Russ Sharpton and Suellen Nelles v. Girl Scouts of the United States of America", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7408&caseNumber=S17144&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S17144", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-06", - "case_names": "Sunny Haight, Personal Representative of the Estate of Savannah Cayce v. City & Borough of Juneau", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7406&caseNumber=S16903&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16903", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-30", - "case_names": "Silvia V. Tobar v. Remington Holdings LP and Liberty Insurance Company", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7402&caseNumber=S17027&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S17027", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-30", - "case_names": "Harry Ross v. State of Alaska Human Rights Commission", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7405&caseNumber=S16961&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16961", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-30", - "case_names": "Billy Dean Smith and Jacob Lee Anagick v. State of Alaska, Department of Corrections", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7404&caseNumber=S16711&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16711", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-16", - "case_names": "Raymond Leahy v. John Conant and James Duncan", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7399&caseNumber=S16866&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16866", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-16", - "case_names": "Jerry C. McCavit and Brenda D. McCavit v. Barbara Lacher, Louis Lacher, and State of Alaska, Department of Natural Resources", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7398&caseNumber=S16715&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16715", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-31", - "case_names": "State of Alaska, Department of Natural Resources v. Alaskan Crude Corporation and James M. White, James M. White v. State of Alaska, DNR, and Alaskan Crude Corp.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7283&caseNumber=S16308%2C%20S16417&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16308, S16417", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-08", - "case_names": "Kevin Meyer, Lieutenant Governor of the State of v. Stand for Salmon", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7274&caseNumber=S16862&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16862", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-09", - "case_names": "Morris L. (Father) v. State of Alaska, DHSS, OCS, State of Alaska, DHSS, OCS v. Michelle P. (Mother) and Morris L. (Father)", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7221&caseNumber=S16594%2C%20S16574&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16594, S16574", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-22", - "case_names": "Brandy Whittenton v. Peter Pan Seafoods, Inc.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7203&caseNumber=S16285&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16285", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-25", - "case_names": "Pamela Darrow (f/k/a/ Creekmore) v. Alaska Airlines, Inc., Alaska Airlines, Inc. v. Pamela Darrow (f/k/a Creekmore)", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7192&caseNumber=S16143%2C%20S16127&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16143, S16127", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-11", - "case_names": "Cheryl M. Grove v. Melvin B. Grove, Jr., Melvin B. Grove, Jr. v. Cheryl M. Grove", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7189&caseNumber=S16075%2C%20S16056&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S16075, S16056", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-16", - "case_names": "Richard Feeney v. James Daggett and Nadia Daggett, James William Daggett and Nadia Tora Daggett v. Richard L. Feeney", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7179&caseNumber=S15819%2C%20S15799&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15819, S15799", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-11", - "case_names": "Trevor M. v. State of Alaska, DHSS, OCS", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7086&caseNumber=S15913&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15913", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-08", - "case_names": "Ketchikan Gateway Borough v. State of Alaska, State of Alaska v. Ketchikan Gateway Borough", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7075&caseNumber=S15841%2C%20S15811&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15841, S15811", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-18", - "case_names": "Clifford W. Tagaban v. City of Pelican, Clifford W. Tagaban v. City of Pelican", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=7049&caseNumber=S15253%2C%20S15014&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15253, S15014", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-01-30", - "case_names": "Mary Hicks v. State of Alaska, Jorge T. Moreno v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6982&caseNumber=S15070%2C%20S15067&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15070, S15067", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-26", - "case_names": "William Ebert, Holly Ebert, and Connie J. v. Bruce L., William Ebert, Holly Ebert, and Connie J. v. Bruce L.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6976&caseNumber=S15130%2C%20S15219&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15130, S15219", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-14", - "case_names": "Royal Wolf Lodge, Linda Branham and Chris Branham v. Jeff Moody, Jeff Moody v. Royal Wolf Lodge, Linda Branham and Chris Branham", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6966&caseNumber=S14883%2C%20S14864&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14883, S14864", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-10", - "case_names": "J.H. (Father) v. State of Alaska, DHSS, OCS", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6957&caseNumber=S15346&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15346", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-29", - "case_names": "Barbara Konrad v. Cody Lee and Stacey Dean, Cody Lee and Stacey Dean, Husband and Wife v. Barbara Konrad", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6948&caseNumber=S14524%2C%20S14503&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14524, S14503", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-08", - "case_names": "Susan Kruse, Denmar Wells, IV, Jay Hanson v. Alaska Judicial Council, and Larry Cohn, Alaska Judicial Council, and Larry Cohn v. Susan Kruse, Denny Wells, Jay Hanson", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6938&caseNumber=S14893%2C%20S14874&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14893, S14874", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-11", - "case_names": "Daniel W. Oberlatz, Raymond 'Sony' Peterson v. Lake and Peninsula Borough Assembly, Lake and Peninsula Borough Assembly, Mayor v. Daniel W. Oberlatz, Robert B. Gillam", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6923&caseNumber=S15055%2C%20S14945&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15055, S14945", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Comsult LLC and Roger Davis v. Girdwood Mining Company, Girdwood Mining Company v. Comsult, LLC and Rodger Davis", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6921&caseNumber=S15037%2C%20S14588&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S15037, S14588", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-16", - "case_names": "ITMO Hospitalization of Mark V.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6911&caseNumber=S14534&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14534", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-05-09", - "case_names": "Alaska Communications Systems Holdings, Inc. v. Brett Conley and Marina Conley, Brett Conley and Marina Conley v. Alaska Communications Systems Holdings, Inc.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6910&caseNumber=S14213%2C%20S14194&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14213, S14194", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-11", - "case_names": "Robert Rude, Harold Rudolph, Brenda Nicoli v. Cook Inlet Region, Inc., Robert W. Rude, Harold F. Rudolph, Brenda Nicoli v. Cook Inlet Region, Inc. [CIRI], Cook Inlet Region, Inc. [CIRI] v. Robert W. Rude, Harold F. Rudolph, Brenda Nicoli &", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6887&caseNumber=S14796%2C%20S14686%2C%20S14775&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14796, S14686, S14775", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-21", - "case_names": "Lawrence Hartig, Commissioner of the Alaska v. Alaska Community Action on Toxics, Alaska Community Action on Toxics v. Lawrence Hartig, Commissioner of Alaska DEC, Alaska Railroad Corporation, Lawrence Hartig v. Alaska Community Action on Toxics", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6879&caseNumber=S14863%2C%20S14823%2C%20S14873&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14863, S14823, S14873", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-14", - "case_names": "Williams Alaska Petroleum, Inc. v. ConocoPhillips Alaska, Inc., ConocoPhillips Alaska, Inc. v. Williams Alaska Petroleum, Inc., ConocoPhillips Alaska, Inc v. Williams Alaska Petroleum, Inc.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6874&caseNumber=S14674%2C%20S14654%2C%20S14953&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14674, S14654, S14953", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-14", - "case_names": "M-K Rivers, Employer & Ace Indemnity Insurance Co. v. Willard L. Harris, Willard L. Harris v. M-K Rivers, Employer, & Ace Indemnity Insurance Co", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6876&caseNumber=S14262%2C%20S14254&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14262, S14254", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-02-19", - "case_names": "Fairbanks North Star Borough v. BP Pipelines (Alaska) Inc., BP Pipelines (Alaska) Inc. v. State of Alaska, Dept. of Revenue, City of Valdez v. BP Pipelines (Alaska) Inc.", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6867&caseNumber=S14116%2C%20S14095%2C%20S14125&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14116, S14095, S14125", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-13", - "case_names": "P.J. (Father) v. State of Alaska, OCS, P.J. (Father) v. State of Alaska, OCS", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6853&caseNumber=S14994%2C%20S14810&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14994, S14810", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-06", - "case_names": "James E. Barber v. State of Alaska, Department of Corrections", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6850&caseNumber=S14504&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14504", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-16", - "case_names": "Mary E. Neary and Patrick T. Neary v. United Services Automobile Association, United Services Automobile Association v. Mary E. Neary and Patrick T. Neary", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6810&caseNumber=S14600%2C%20S14580&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14600, S14580", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-16", - "case_names": "Leon Knowles and E. Brown Inc v. Edward Brown and Heidi Brown, Edward Brown and Heidi Brown v. Leon Knowles and E. Brown Inc. D/b/a Intl Steel", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6811&caseNumber=S13643%2C%20S13613&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S13643, S13613", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-02", - "case_names": "Burr, Pease and Kurtz and John C. Siemers v. Nicholas A. Gefre and Charles T. Beck, Nicholas Gefre, Charles Beck and Petro Alaska, Inc v. Davis Wright Tremaine & Burr Pease & Kurtz", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6804&caseNumber=S13745%2C%20S13675&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S13745, S13675", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-26", - "case_names": "Union Oil Company of California v. Tesoro Alaska Company, Tesoro Alaska Company v. Union Oil Co of CA, Unocal Pipeline Co & Unocal Co", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6802&caseNumber=S14132%2C%20S14122&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14132, S14122", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-03-08", - "case_names": "Ronald V. Weilbacher v. Floyd Ring, Sandra Ring, Wade Henry and Jane Henry", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6757&caseNumber=S14180&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14180", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-25", - "case_names": "Caroline Williams, Estate of Robert Shapsnikoff v. Geico Casualty Company d/b/a Geico", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6746&caseNumber=S14089&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14089", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-01-18", - "case_names": "Mary Licht, as personal representative v. Thomas Irwin, Commissioner, DNR, SOA", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=6744&caseNumber=S14318&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "S14318", - "citations": "", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "date_filed": "2022-09-16", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gNDhSv2BT1oCtxBdZh40v/spMJps5SgkkqSooblvE7GYvNXGj9A8TB7'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Sandy Sulzbach and Rob Sulzbach v. City & Borough of Sitka and John T. Ferrick", + "case_name_short": "" + }, + "docket_number": "S17853", + "case_name": "Sandy Sulzbach and Rob Sulzbach v. City & Borough of Sitka and John T. Ferrick", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2022-09-16", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gMtP0Gpi9BrmEz/54f4X0uHEoylG1lcj/Uh1ivgyl2iiSJB3WkmUVLn'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Julie I. Husby and Gregory L. Husby v. Jennifer M. Monegan and Scout A. Monegan", + "case_name_short": "" + }, + "docket_number": "S18023", + "case_name": "Julie I. Husby and Gregory L. Husby v. Jennifer M. Monegan and Scout A. Monegan", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2022-09-16", + "citation_strings": [ + "517 P.3d 31 (2022)" + ], + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gPUVaqIvF0sj+7uMFY4uzCjZYrs1h1hcMO2SufySzr4YmStSffpC7Ap'" + } + ], + "nature_of_suit": "Appeal", + "disposition": "Affirm", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "John Reeves and Fairbanks Gold Co., LLC v. Godspeed Properties, LLC and Gold Dredge 8, LLC, Godspeed Properties, LLC and Gold Dredge 8, LLC v. John Reeves and Fairbanks Gold Co., LLC", + "case_name_short": "" + }, + "docket_number": "S17884, S17904", + "case_name": "John Reeves and Fairbanks Gold Co., LLC v. Godspeed Properties, LLC and Gold Dredge 8, LLC, Godspeed Properties, LLC and Gold Dredge 8, LLC v. John Reeves and Fairbanks Gold Co., LLC", + "date_filed": "2020-09-11", + "OriginatingCourtInformation": { + "docket_number": "4FA-12-02133CI", + "date_judgment": "2020-07-03", + "assigned_to_str": "Randy M. Olsen Paul R. Lyle" + }, + "appeal_from_str": "Superior", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2022-09-16", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gNJYGqPpoWL2BHkqhSrGIfxAr00GcvP+otRornff6pvYYMXu+8MIhFJ'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Ahtna, Inc. v. State of Alaska, Department of Transportation & Public Facilities, et al., State of Alaska, Department of Transportation & Public Facilities, et al. v. AHTNA, Inc., State of Alaska, Department of Transportation & Public Facilities, et al. v. Ahtna, Inc.", + "case_name_short": "" + }, + "docket_number": "S17496, S17526, S17605", + "case_name": "Ahtna, Inc. v. State of Alaska, Department of Transportation & Public Facilities, et al., State of Alaska, Department of Transportation & Public Facilities, et al. v. AHTNA, Inc., State of Alaska, Department of Transportation & Public Facilities, et al. v. Ahtna, Inc.", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2022-09-02", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gNWsNBs1fsPNbuY/ib4S1CHZdleu0uMq/YE2BUZy8MruvtCVJXI9662'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "State of Alaska, Department of Corrections v. Trevor Stefano", + "case_name_short": "" + }, + "docket_number": "S17892", + "case_name": "State of Alaska, Department of Corrections v. Trevor Stefano", + "source": 2, + "blocked": false, + "case_name_short": "" + } } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaska_example.html b/tests/examples/opinions/united_states/alaska_example.html index 25b963dcd..560bc1ad6 100644 --- a/tests/examples/opinions/united_states/alaska_example.html +++ b/tests/examples/opinions/united_states/alaska_example.html @@ -1,17407 +1,232 @@ - - - + Opinions - - - - - - - - - - - - - - + +
-
-
- -
- - - - - - - -
-
-
-
-

Supreme Court Opinions

-
-

- Recent Decisions -

-

- These decisions are provided in Adobe Acrobat PDF format. If you do not have the Adobe Acrobat Reader, click here to download a free copy. -

- Older internet browsers like Internet Explorer 7 and earlier may not be able to display the document downloads correctly. - Instead of upgrading, you may try using a different browser such as Chrome or Firefox to see if the page is displayed correctly. -
-
- - Opinions are published weekly on Fridays at 9AM. If you have visited this page and not refreshed prior to 9AM Friday, please refresh to see the latest postings. -
-

- -
-
-
Friday, November 1, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7416 -S16685 Nicholas Ryan Dunn v Dakota Christine Jones
- -7418 -S16916 Keilan Ebli v State of Alaska, Department of Corrections
- -7417 -S17129 Joy B v. Everett B
- -
-
-
Thursday, October 17, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7415 -S16654 In the Matter of the Necessity for the Hospitalization of Luciano G.
- -
-
-
Friday, October 11, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7413 -S16983 Alaska Public Defender Agency v Superior Court
- -7414 -S17290 Annette H. v. State of Alaska, Department of Health & Social Services, Office of Children's Services
- -
-
-
Friday, September 27, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7412 -S16928 In the Matter of the Necessity for the Hospitalization of G.L.
- -7409 -S17184 Kyoko Perry v Adam Perry
- -7410 -S16795 Ray M. Collins and Carol J. Collins v. David W. Hall and Margaret R. Hall, as Trustees of the D&M Hall Community Property Trust, dated March 14, 2005
- -7411 -S16854 Thomas Taffe and Devony Lehner v. First National Bank of Alaska
- -
-
-
Friday, September 13, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7407 -S16697 In the Matter of the Necessity of the Hospitalization of Lucy G.
- -7408 -S17144 Farthest North Girl Scout Council, Russ Sharpton and Suellen Nelles v. Girl Scouts of the United States of America
- -
-
-
Friday, September 6, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7406 -S16903 Sunny Haight, Personal Representative of the Estate of Savannah Cayce v. City & Borough of Juneau
- -
-
-
Friday, August 30, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7405 -S16961 Harry Ross v State of Alaska Human Rights Commission
- -7402 -S17027 Silvia V. Tobar v. Remington Holdings LP and Liberty Insurance Company
- -7404 -S16711 Billy Dean Smith and Jacob Lee Anagick v State of Alaska, Department of Corrections, et al.
- -
-
-
Friday, August 16, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7398 -S16715 Jerry C. McCavit and Brenda D. McCavit v. Barbara Lacher, Louis Lacher, and State of Alaska, Department of Natural Resources
- -7399 -S16866 Raymond Leahy v. John Conant and James Duncan
- -7401 -S16973 Adolph Hall v. Bertha Delores Hall446 P.3d 781
- -7400 -S16986 Craig Wm. Black and Camille R. Brill v. Whitestone Estates Condominium Homeowners' Association, Donald Jurewicz and Mary E. Jurewicz446 P.3d 786
- -
-
-
Friday, August 9, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7395 -S16974, S17043 All American Oilfield, LLC v. Cook Inlet Energy, LLC, In re: Cook Inlet Energy, LLC, Charles Gebhardt, Trustee for the Miller Energy Resources Creditors' Liquidation Trust v. Carol Inman, d/b/a Starichkof Enterprises446 P.3d 767
- -7397 -S16905 Jeff Graham v Municipality of Anchorage446 P.3d 349
- -7396 -S16908 John Diamond III v. Platinum Jaxx, Inc.446 P.3d 341
- -7394 -S16981 Fantasies on 5th Avenue, LLC. v State of Alaska, Alcoholic Beverage Control Board446 P.3d 360
- -7393 -S17138 Matthew Schwier v. Audrey Schwier, n/k/a Audrey Magee-Davey446 P.3d 354
- -
-
-
Friday, August 2, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7390 -S17162 Brett M. v. Amber M.445 P.3d 1005
- -7392 -S17068 Club Sinrock, LLC v Municipality of Anchorage445 P.3d 1031
- -7389 -S16951 Deverette L. Williams v Violeta Baker, Last Frontier Assisted Living, LLC446 P.3d 336
- -7391 -S16529 Lorena Weston v AKHappytime, LLC, d/b/a Alex Hotel & Suites445 P.3d 1015
- -
-
-
Friday, July 19, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7387 -S16912 John E. and Sally E., a Minor v. Andrea E.445 P.3d 649
- -7388 -S16877 Robin Lee Mitchell v. John R. Mitchell445 P.3d 660
- -
-
-
Friday, July 12, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7386 -S16930 Alaina Adkins and Maxim Healthcare Services, Inc. v. Jesse Michael Collens444 P.3d 187
- -7385 -S16762 Tamra Faris v Gordon Taylor444 P.3d 180
- -
-
-
Friday, July 5, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7384 -S17067, S17158 Oliver N. (Father) v. State of Alaska, DHSS, OCS, Lisa B. (Mother) v. State of Alaska, DHSS, OCS444 P.3d 171
- -7383 -S17143 D&D Services, LLC d/b/a Novus Auto Glass and Ohio v. Kiel L. Cavitt 444 P.3d 165
- -7382 -S17301, S17311 Kathryn Dodge v. Lt. Governor Kevin Meyer, in his Official Capacity as Lt. Governor for the State of Alaska, and Josephine Bahnke, in her Official Capacity as Director of the Division of Elections, Barton LeBon and the Alaska Republican Party v. Lt. Governor Kevin Meyer, in his Official Capacity as Lt. Governor for the State of Alaska, and Josephine Bahnke, in her Official Capacity as Director of the Division of Elections 444 P.3d 159
- -
-
-
Friday, June 28, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7381 -S16931 State of Alaska v Teila V. Tofelogo444 P.3d 151
- -
-
-
Friday, June 21, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7380 -S16693 John Buckley v. American Fast Freight, Inc. and Matthew S. Carroll444 P.3d 139
- -
-
-
Friday, June 14, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7375 -S16748 John Doe v. State of Alaska, Department of Public Safety444 P.3d 116
- -7374 -S17133 Steve H. v. State of Alaska, DHSS, OCS444 P.3d 109
- -7379 -S17135, S17128 Marian V. v. State of Alaska, DHSS, OCS, Charles S. v. State of Alaska, DHSS, OCS442 P.3d 780
- -7376 -S17154, S17178 Dena M. v. State of Alaska, DHSS, OCS, Dustin V. v. State of Alaska, DHSS, OCS442 P.3d 755
- -7378 -S17246 Jessica J., a minor v. State of Alaska442 P.3d 771
- -7377 -S17055 Elias Robinson v. Alaska Housing Finance Corporation442 P.3d 763
- -
-
-
Friday, June 7, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7372 -S17130 Sam M. v. State of Alaska, Department of Health & Social Services, Office of Children's Services442 P.3d 731
- -7373 -S16612 David Sean Pasley v Cynthia Deneen Pasley442 P.3d 738
- -
-
-
Friday, May 31, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7371 -S17188 Sabrina V. v. State of Alaska, Department of Health and Social Services, Office of Children's Services442 P.3d 717
- -7369 -S16980 Leonard T. Kelley v Municipality of Anchorage, Board of Equalization442 P.3d 725
- -7370 -S16322 Nixola Jean Doan v. Banner Health, Inc., d/b/a Fairbanks Memorial Hospital; Northern Hospital Association, LLC; James W. Cagle, D.O.; Golden Heart Emergency Physicians; Faye Lee, M.D.; Interior Aids Association/Project Special Delivery; and Nicole Fliss, M.D.442 P.3d 706
- -
-
-
Friday, May 24, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7365 -S16991 Randall G. Jackson v. Borough of Haines, Joshua Knorr, Jason F. Rettinger, Adam Patterson, Simon Ford, Gary Lowe, Darsie Calbeck a/k/a Culbeck, Mark Earnest, Amy Williams, and James Scott441 P.3d 925
- -7364 -S16737 Kenai Landing, Inc. v. Cook Inlet Natural Gas Storage, LLC.; Kirkpatrick-Walkowski-Watkins Trust and Chere D. Kaas441 P.3d 954
- -7367 -S16663, S15853 Gerald Markham v Kodiak Island Borough Board of Equalization, Gerald Markham v Kodiak Island Borough Board of Equalization441 P.3d 943
- -7368 -S16860 Donald Jones and Annette Gwalthney-Jones v. State of Alaska, Department of Revenue441 P.3d 966
- -7366 -S16803 Robert C. Keeton III v. State of Alaska, Department of Transportation and Public Facilities; Matanuska-Susitna Borough; City of Wasilla; Matanuska Electric Association, Inc.; Mat-Su Title Insurance Agency, Inc.; and Matanuska Federal Credit Union441 P.3d 933
- -
-
-
Friday, May 17, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7362 -S16427 Lee E. Baker Jr. v. Kenneth M. Duffus441 P.3d 432
- -7363 -S16805 Kenneth Arnold Wahl v State of Alaska441 P.3d 424
- -
-
-
Friday, May 10, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7361 -S16587 Brett Crowley; Knik Aircraft Leasing, LLC; and Wingnuts Aviation, LLC., v. Northern Aviation, LLC, and NA Holdings, LLC.441 P.3d 407
- -
-
-
Friday, May 3, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7360 -S16532 Errol P. Downs v Deborah Downs440 P.3d 294
- -
-
-
Friday, April 26, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7357 -S16868 Guy Alan Berry, Jr. v Colleen Marie Coulman440 P.3d 264
- -7359 -S16402 In the Matter of the Estate of Jerry Hatten440 P.3d 256
- -7356 -S16821 Bryce Warnke-Green v. Pro-West Contractors, LLC and Liberty Northwest Insurance Company440 P.3d 283
- -7358 -S17008 Amy S. v. State of Alaska, DHSS, OCS440 P.3d 273
+
+
+
+ + + +
+
+
+
+

Supreme Court Opinions

+
+

- Recent Decisions -

+

+

+
+
+ Opinions are published weekly + on + Fridays at 9AM. If you have visited this page and not refreshed prior to 9AM Friday, please refresh + to see the latest postings. + The documents are available for direct download until they are published in the official + reporter of Alaska appellate decisions - Pacific Reporter(P.2d and P.3d), and the Alaska + Reporter, + which contains the Alaska cases excerpted from P.2d and P.3d. The Pacific Reporter or the Alaska + Reporter is available at most Alaska + Court System law libraries and some public libraries. +
+
+

+ +
+ + +
+
Friday, September 16, 2022
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + 7620 + S18023 + Julie I. + Husby and Gregory L. Husby v. Jennifer M. Monegan and Scout A. Monegan
+ + + + 7619 + S17496, + S17526, S17605 + Ahtna, Inc. + v. State of Alaska, Department of Transportation & Public Facilities, et + al., State of Alaska, Department of Transportation & Public Facilities, et + al. v. AHTNA, Inc., State of Alaska, Department of Transportation & Public + Facilities, et al. v. Ahtna, Inc.
+ + + + 7618 + S17853 + Sandy + Sulzbach and Rob Sulzbach v. City & Borough of Sitka and John T. Ferrick +
+ + 7617 + S17884, + S17904 + John Reeves + and Fairbanks Gold Co., LLC v. Godspeed Properties, LLC and Gold Dredge 8, LLC, + Godspeed Properties, LLC and Gold Dredge 8, LLC v. John Reeves and Fairbanks + Gold Co., LLC 517 P.3d 31 (2022)
+
+
+
Friday, September 2, 2022
+ + + + + + + + + + + + + + + + + + + +
+ + + + 7616 + S17892 + State of + Alaska, Department of Corrections v. Trevor Stefano
+
-
-
Friday, April 19, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - -
- -7352 -S16872 Thomas I. Anderson, Sr. v. State of Alaska, Alaska Department of Administration, Division of Motor Vehicles440 P.3d 217
- -7354 -S16267 Frank Griswold v Homer Board of Adjustment, et al.440 P.3d 248
- -7353 -S16978 Theodore D. Morrison v. Alaska Interstate Construction Inc. and SKW Eskimos, Inc.440 P.3d 224
- -7355 -S16719 Justin A. D. Nelson v. State of Alaska440 P.3d 240
- -
-
-
Friday, April 12, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7351 -S16785, S16985 SMJ General Construction, Inc. v Jet Commercial Construction, LLC, SMJ General Construction, Inc., v. Jet Commercial Construction, LLC440 P.3d 210
- -
-
-
Friday, April 5, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7350 -S16421 Regina C., n/k/a Regina S. v. Michael C.440 P.3d 199
- -
-
-
Friday, March 29, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7347 -S16945 Yvonne M. Gambini v Perry W. Hamilton440 P.3d 184
- -7349 -S16917 Alaska Spine Center, LLC v. Mat-Su Valley Medical Center LLC, et al.440 P.3d 176
- -7348 -S16618 Yvette M. Wilkins v Paul D. Wilkins440 P.3d 194
- -
-
-
Friday, March 22, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7346 -S16841 ITMO Hospitalization of Linda M. 440 P.3d 168
- -7345 -S16847 ITMO Hospitalization of Connor J.440 P.3d 159
- -
-
-
Friday, March 15, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7344 -S16964 Desmond E. Schacht v Terry Kunimune440 P.3d 149
- -
-
-
Friday, March 8, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7342 -S16781 Raymond Leahy v. John Conant & Clare Sullivan436 P.3d 1039
- -7341 -S16796, S16816 Eva H. (Mother) v. State of Alaska, DHSS, OCS, Keith J. (Father) v. State of Alaska, DHSS, OCS436 P.3d 1050
- -7343 -S16678 Chris Rosauer and Jeanne Rosauer v Thomas Manos, Jody Liddicoat, et al.440 P.3d 145
- -7340 -S16409 Terri Reynolds-Rogers v State of Alaska, DHSS436 P.3d 469
- -
-
-
Friday, March 1, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7339 -S17038 Violet C. (Mother) v. State of Alaska, DHSS, OCS436 P.3d 1032
- -
-
-
Tuesday, February 26, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7339 -S17066 Jack C. (Father) v. State of Alaska, DHSS, OCS436 P.3d 1032
- -
-
-
Friday, February 22, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7337 -S17012 Daisy Saffir v Michael Wheeler436 P.3d 1009
- -7338 -S15944, S15973 Regulatory Commission of Alaska v Matanuska Electric Association, et al., Homer Electric Association, Inc. v Regulatory Commission of Alaska, et al.436 P.3d 1015
- -
-
-
Friday, February 15, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7334 -S16123 State of Alaska, Department of Health & Social Services v. Planned Parenthood of the Great Northwest436 P.3d 984
- -7335 -S16998, S17002 Bill S. (Father) v. State of Alaska, DHSS, OCS, Clara B. (Mother) v. State of Alaska, DHSS, OCS436 P.3d 976
- -7336 -S16897, S16607 Gayle Bjorn-Roli, et al. v Patricia Mulligan, Gayle Bjorn-Roli, et al. v Patricia Mulligan436 P.3d 962
- -
-
-
Wednesday, February 13, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7330 -S16624 State of Alaska v Dana Thompson435 P.3d 947
- -
-
-
Friday, February 8, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7332 -S16724 Link C. Fannon v. Estate of June Scheele by and through Nola Polo, Personal Representative436 P.3d 956
- -7333 -S16851, S16861 Unisea, Inc. & Alaska National Insurance Company v Sofia Morales de Lopez, Sofia Morales de Lopez v Unisea, Inc. & Alaska National Insurance Company435 P.3d 961
- -
-
-
Friday, January 25, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7330 -S16643 Dana R. Thompson v State of Alaska435 P.3d 947
- -7331 -S16509 Allstate Insurance Company and Kathy Berry v Mary Kenick, individually, and Angelina Trailov435 P.3d 938
- -
-
-
Friday, January 11, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7328 -S16467, S15859 ITMO Hospitalization of Linda M., ITMO Hospitalization of Naomi B.435 P.3d 918
- -
-
-
Friday, January 4, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7326 -S16449, S16191, S16193, S16214 Jeffery K. Holt v State of Alaska, State of Alaska v Jyzyk J. Sharpe, State of Alaska v Thomas Henry Alexander, Thomas Henry Alexander and Jyzyk J. Sharpe v State of Alaska435 P.3d 887
- -7327 -S16914 Helen Bravo, on behalf of Ashley Bravo v Shelby Aker and Fred Aker435 P.3d 908
- -
-
-
Friday, December 28, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7325 -S16996 Jonathan Fox v Gary Grace & Shannon Grace435 P.3d 883
- -
-
-
Friday, December 21, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7324 -S16834 ITMO Hospitalization of Paige M.433 P.3d 1182
- -7323 -S16466 Christopher S. Hess v State of Alaska435 P.3d 876
- -
-
-
Friday, December 14, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7322 -S16733, S16713 Royal Wolf Lodge, Linda Branham and Chris Branham v Jeff Moody, Jeff Moody v Royal Wolf Lodge, Linda Branham, and Chris Branham433 P.3d 1173
- -7321 -S16730 John Strong v James Williams, Susie Williams, et al435 P.3d 872
- -
-
-
Friday, December 7, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7319 -S16687 Georgette S.B. v. Scott B.433 P.3d 1165
- -7320 -S16818 Edith A., n/k/a Edith W. v. Jonah A.433 P.3d 1157
- -
-
-
Sunday, December 2, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7318 -S16508 David B. Fletcher v Linda Fletcher n/k/a Linda Occhipinti433 P.3d 1148
- -
-
-
Friday, November 16, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7316 -S16710 ITMO Adoption of E.H. and J.H. 431 P.3d 1190
- -7317 -S16932 Duke S. (Father) v. State of Alaska, DHSS, OCS433 P.3d 1127
- -7315 -S16876 Steven C. Levi v State of Alaska, Dep't of Labor433 P.3d 1137
- -
-
-
Friday, November 9, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7314 -S16808 Skylar Burns-Marshall v Victoria A. Krogman433 P.3d 1121
- -
-
-
Wednesday, November 7, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7309 -S16517 William H. Mendenhall v Sheila Lynn Erwin433 P.3d 1090
- -
-
-
Friday, November 2, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7312 -S16662 Michael W. v. Tina Bell and Robert Bell433 P.3d 1105
- -7313 -S16592 State of Alaska v Conar L. Groppel433 P.3d 1113
- -
-
-
Friday, October 26, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7311 -S16554 Stacey Allen Graham v Dayna Durr, et al.433 P.3d 1098
- -
-
-
Friday, October 19, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7310 -S16569 Kevin Patterson v Governor Bill Walker, et al.429 P.3d 829
- -7309 -S16487 Sheila Lynn Erwin v William H Mendenhall433 P.3d 1090
- -
-
-
Friday, October 5, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7307 -S16468 Kelly A. Dickson, et al. v State of Alaska, Department of Natural Resources433 P.3d 1075
- -7308 -S16826 Demetria H. (Mother) v State of Alaska, DHSS, OCS433 P.3d 1064
- -
-
-
Friday, September 28, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7304 -S16761 Lewis G. v Cassie Y.426 P.3d 1136
- -7306 -S16617 Ronda Marcy v Matanuska-Susitna Borough, et al.433 P.3d 1056
- -7305 -S16880 Sarah A. (Mother) v. State of Alaska, DHSS, OCS427 P.3d 771
- -
-
-
Friday, September 21, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7303 -S16586, S16626 Christopher D. v Krislyn D., Krislyn D. v Christopher D.426 P.3d 1118
- -7300 -S16485 Tracy O. Atkins v State of Alaska, Workers' Compensation Benefits426 P.3d 1124
- -7301 -S16303 Lydia Johnson, individually and as the personal v J.G. Pattee, Inc., et al.426 P.3d 1096
- -7302 -S16057 Daniel Lum, et al. v Gwen Koles (Grimes), et al.426 P.3d 1103
- -
-
-
Friday, September 14, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7297 -S16236 Frank Griswold v Homer City Council and Walt Wrede428 P.3d 180
- -7299 -S16171 David Simmons v State of Alaska, Department of Corrections426 P.3d 1011
- -7296 -S16083 Bertha Delores Hall v Adolph Hall426 P.3d 1006
- -7294 -S16488 Paulette Harper v BioLife Energy Systems, Inc., et al.426 P.3d 1067
- -7298 -S16524 ITMO Hospitalization of Darren M.426 P.3d 1021
- -7293 -S16440, S15920, S15969 Mat-Su Valley Medical Center, LLC d/b/a Mat-Su v Jon Paul Brandt, Mat-Su Valley Medical Center, LLC, d/b/a Mat-Su Re v Denise Bolinder, as personal representative of the, Mat-Su Valley Medical Center, LLC, d/b/a Mat-Su Re v Denise Bolinder, as personal representative of the427 P.3d 754
- -7289 -S15857 Shelley A. Fredrickson v Forest J. Button426 P.3d 1047
- -7290 -S16570 William C. Cox v Estate of Steve E. Cooper and Dorothy Cooper426 P.3d 1032
- -7295 -S16660 Frank Griswold v Homer Board of Adjustment, et al.426 P.3d 1044
- -7291 -S16598 City of Kodiak v Kodiak Public Broadcasting Corporation426 P.3d 1089
- -7292 -S16684 Brooke Corkery and Patrick Corkery v Municipality of Anchorage426 P.3d 1078
- -
-
-
Friday, September 7, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7287 -S16388 Daniel Blair v Federal Ins. Co., and Charles Fogle433 P.3d 1048
- -7288 -S16126, S16526, S16527 Dara S. (Mother) v State of Alaska, DHSS, OCS, State of Alaska, Office of Public Advocacy, GAL v Dara S. (Mother), State of Alaska, DHSS, OCS v Dara S. (Mother)426 P.3d 975
- -
-
-
Friday, August 31, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7283 -S16308, S16417 State of Alaska, Department of Natural Resources v Alaskan Crude Corporation and James M. White, James M. White v State of Alaska, DNR, and Alaskan Crude Corp.
- -7281 -S16401, S16381 Matthew Geldermann v Darcey Geldermann, Darcey Geldermann v Matthew Geldermann428 P.3d 477
- -7285 -S16442, S16471 Holly Sheldon Lee and Sheldon Air Service, LLC v Robert Donald Sheldon, Individually and as Trustee, Robert Donald Sheldon, Individually and as Trustee v Holly Sheldon Lee and Sheldon Air Service427 P.3d 745
- -7286 -S16492, S16462, S16494 ITMO the 2016 House District 40 Primary Election, ITMO the 2016 House District 40 Primary Election, ITMO the 2016 House District 40 Primary Election v 426 P.3d 930
- -7284 -S16190 Bob Huber v State of Alaska, Department of Corrections426 P.3d 969
- -7280 -S16197 Alaska State Commission for Human Rights v Dori Lynn Anderson426 P.3d 956
- -7282 -S16760, S16720 Jeannette Anderson v Dewayne Tomal, Dewayne Tomal v Jeannette Anderson426 P.3d 915
- -
-
-
Friday, August 24, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7279 -S16875 State of Alaska v Alaska Democratic Party426 P.3d 901
- -7277 -S16604, S16584 Carlile Transportation Systems, Inc. v HDI-Gerling America Insurance Company, HDI Gerling America Insurance Company v Carlile Transportation Systems, Inc.426 P.3d 881
- -7276 -S16187 John Eberhart v Alaska Public Offices Commission426 P.3d 890
- -7278 -S16482, S16512 Inna V. Boiko and Louis Picarella v George M. Kapolchok, et al., George M. Kapolchok, et al. v Inna v. Boiko and Louis Picarella426 P.3d 868
- -
-
-
Friday, August 17, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7275 -S16573 Nathan Ball v Allstate Insurance Company426 P.3d 862
- -
-
-
Friday, August 10, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7270 -S16403, S15821 John Doe v State of Alaska, Department of Public Safety, State of Alaska, Department of Public Safety v John Doe425 P.3d 115
- -7268 -S16200 Sarah M. Whalen v. Sean Patrick Whalen425 P.3d 150
- -7273 -S16639 Gregory S. Gordon v Patricia S. Gordon425 P.3d 142
- -7271 -S16610 Rowena Weathers v Dennis Weathers425 P.3d 131
- -7269 -S16751 Alexander S. Daves v Alexandrea McKinley and Kathryn Ledlow425 P.3d 92
- -7272 -S15576 Kelly Brennan v Rachael Brennan425 P.3d 99
- -
-
-
Wednesday, August 8, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7274 -S16862 Kevin Meyer, Lieutenant Governor of the State of v. Stand for Salmon
- -
-
-
Friday, August 3, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7267 -S15986 Nuria Mengisteab v Ahla-Taki Oates425 P.3d 80
- -
-
-
Friday, July 27, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7266 -S16382 Brooks Range Petroleum Corporation v Daniel P. Shearer425 P.3d 65
- -7262 -S16302 Robert C.O. Gross v Dawn Alexia Wilson424 P.3d 390
- -7264 -S16616 Vince B. v Sarah B.425 P.3d 55
- -7263 -S16763 Beth Pingree v Andre Cossette424 P.3d 371
- -7265 -S16774 Jensen D. (Mother) v. State of Alaska, DHSS, OCS424 P.3d 385
- -
-
-
Friday, July 20, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7260 -S15561 ITMO: Estate of James V. Seward 424 P.3d 333
- -7258 -S16451 Matthew Fink, et al. v Municipality of Anchorage424 P.3d 338
- -7261 -S16452 Arcticcorp v C Care Services, LLC, and State of Alaska, DHSS424 P.3d 365
- -7259 -S16176 Michael J. Keenan and Dolores A. Keenan v Jackson Meyer and Kandice Meyer424 P.3d 351
- -
-
-
Friday, July 13, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7257 -S16428 Tom Donovan Nicolos v North Slope Borough424 P.3d 318
- -
-
-
Friday, July 6, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7256 -S16889 Laura B. v Wade B.424 P.3d 315
- -
-
-
Friday, June 29, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7255 -S16538 Calvin Miller v June Fowler, Homestead Property Investment, Inc.,424 P.3d 306
- -7254 -S15809 Tracy Hester v Aurora Landau, et al.420 P.3d 1285
- -
-
-
Friday, June 22, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7252 -S16511, S16531 Kenneth H. Manning v Alaska Dept. Of Fish & Game, and Ahtna Tene Nene', Alaska Department of Fish & Game v Kenneth H. Manning and Ahtna Tene Nene420 P.3d 1270
- -7253 -S16436 Tarri Harrold-Jones and Darryl L. Jones v Tucker Drury, M.D., et al.422 P.3d 568
- -
-
-
Friday, June 15, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7250 -S16312 Marc Cottini v. John Berggren and Olena Berggren420 P.3d 1255
- -7251 -S16510, S16501 City of Fairbanks v Public Safety Employees Association, et al., PSEA, AFSCME Local 803, and AFL-CIO v City of Fairbanks, and Alaska Labor Relations Agen420 P.3d 1243
- -
-
-
Friday, June 8, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7249 -S16696 Terrace L. Solomon v Wendy D. Solomon420 P.3d 1234
- -
-
-
Friday, June 1, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7248 -S16833 Kailyn S. (Mother) v. State of Alaska, DHSS, OCS420 P.3d 1232
- -
-
-
Friday, May 18, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7247 -S16502 J. Jill Maxwell v William J. Sosnowski420 P.3d 1227
- -
-
-
Friday, May 11, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7244 -S16406 Charles Wiegers v Amy Richards-Wiegers420 P.3d 1180
- -7246 -S16433, S16523 Gloria Dunmore v Richard Dunmore, Gloria Dunmore v Richard Dunmore420 P.3d 1187
- -7242 -S16441 Chad Hahn v GEICO Choice Insurance Company, et al420 P.3d 1160
- -7241 -S16137 Marianne E. Burke, mother of Abigail E. Caudle v Raven Electric, Inc. And Liberty Mutual Insurance420 P.3d 1196
- -7243 -S16840 Dean S. (Father) v. State of Alaska, DHSS, OCS420 P.3d 1175
- -7245 -S16560 Yong Kang, d/b/a Lee's Massage v Alexander Mullins and State of Alaska420 P.3d 1210
- -
-
-
Friday, May 4, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7239 -S16082 Todd P. Wyman v Richelle Whitson421 P.3d 99
- -7240 -S16217 Antonio Jordan v State of Alaska420 P.3d 1143
- -
-
-
Friday, April 27, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7237 -S16202 Scott Walker v State of Alaska, Department of Corrections421 P.3d 74
- -7238 -S16102 Jon Gregory Lane v City and Borough of Juneau, et al.421 P.3d 83
- -
-
-
Friday, April 13, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7236 -S16386 Rodney S. Pederson v Arctic Slope Regional Corporation421 P.3d 58
- -
-
-
Friday, April 6, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7234 -S16365 State of Alaska v Dean Michael Ranstead421 P.3d 15
- -7235 -S15780 Robert Riddle, dba Fairbanks Pumping & Thawing v Eric Lanser421 P.3d 35
- -
-
-
Friday, March 30, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7233 -S16387 Branlund T. Holmes v Tamara Holmes414 P.3d 662
- -7232 -S16279, S16289, S16290 Matthew Pease-Madore v State of Alaska, Department of Corrections, Matthew Pease-Madore v State of Alaska, Department of Corrections, Matthew Pease-Madore v State of Alaska, Department of Corrections414 P.3d 671
- -
-
-
Friday, March 23, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7231 -S16054 Kevin W. Lindbo v Colaska Inc., d/b/a Secon and Matthew Lindley414 P.3d 646
- -7230 -S16438 Rachel E. Schack, et al. v ITMO the Estate of Elizabeth I. Schack, et al.414 P.3d 639
- -
-
-
Friday, March 16, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7229 -S16530 Alaska Association of Naturopathic Physicians v State of Alaska, et al.414 P.3d 630
- -
-
-
Friday, March 2, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7227 -S16521 Rand Joseph Hooks v Alaska USA Federal Credit Union and Dennis Albert413 P.3d 1192
- -7228 -S16153 Toni 1 Trust, by its Trustee Donald Tangwall v Barbara Wacker, William Wacker, Larry Compton413 P.3d 1199
- -
-
-
Friday, February 23, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7226 -S16374 Diego K. (Father) and Catherine K. (Mother) v. State of Alaska, DHSS, OCS411 P.3d 622
- -7225 -S16629 Justin A. Farr v Brandi Little411 P.3d 630
- -
-
-
Friday, February 16, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7224 -S16260 Anthony Ruben Olivera v Ronalda Renee Rude-Olivera411 P.3d 587
- -7223 -S16458 Kenneth Allen Kessler v Dianna Michelle Kessler411 P.3d 616
- -7222 -S16239 Alvin E. Wassillie v State of Alaska411 P.3d 595
- -
-
-
Friday, February 9, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7220 -S16151 David M. Odom, M.D. v State of Alaska, Division of Corporations421 P.3d 1
- -7221 -S16594, S16574 Morris L. (Father) v State of Alaska, DHSS, OCS, State of Alaska, DHSS, OCS v Michelle P. (Mother) and Morris L. (Father)
- -
-
-
Friday, January 26, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7219 -S15461, S15482 John Reeves & Fairbanks Gold Co., LLC v Godspeed Properties & Gold Dredge 8, Godspeed Properties, LLC v J. Reeves, et al.411 P.3d 560
- -
-
-
Friday, January 19, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7218 -S16445 Carol Beecher and Perry Beecher v City of Cordova408 P.3d 1208
- -
-
-
Friday, January 12, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7217 -S16375 Nickcole E. Moore v Forrest W. McGillis408 P.3d 1196
- -7216 -S16278 Crystal Ruerup v Charles Ruerup408 P.3d 1203
- -
-
-
Friday, January 5, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7215 -S16605 Kiva O. (Mother) v. State of Alaska, DHSS, OCS408 P.3d 1181
- -
-
-
Friday, December 29, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7214 -S16609 Kaleb Lee Basey v State of Alaska, et al.408 P.3d 1173
- -
-
-
Friday, December 8, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7213 -S16500 Cheryl Jordan and Thomas Jordan v Superior Court, Chandra Watson, and William Jordan407 P.3d 497
- -
-
-
Wednesday, November 8, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7212 -S16048 Merdes & Merdes, P.C., et al. v Leisnoi, Inc.410 P.3d 398
- -
-
-
Friday, October 27, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7209 -S16006 Michael Lee Rae v State of Alaska, Department of Corrections, et al.407 P.3d 474
- -7210 -S16298 Jack W. Fredrickson v Allison O. Hackett407 P.3d 480
- -7208 -S16347 Sababu Hodari v State of Alaska, Department of Corrections407 P.3d 468
- -7211 -S15936 Jacqualine Schaeffer-Mathis v Linus Mathis407 P.3d 485
- -
-
-
Friday, October 20, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7207 -S16182 Daniel Dixon v Carolyn Dixon407 P.3d 453
- -7206 -S16098 Bill Yankee v City and Borough of Juneau, et al.407 P.3d 460
- -
-
-
Friday, October 13, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7205 -S16520 Kylie L. (Mother) v. State of Alaska, OCS, DHSS407 P.3d 442
- -
-
-
Friday, October 6, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7204 -S16360 Bruce H. v Jennifer L.407 P.3d 432
- -
-
-
Friday, September 22, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7201 -S16414 Helena Harris n/k/a Helena Dara v Helena Gish and Howard Gish404 P.3d 154
- -7202 -S15987 Mariam Bibi (f/k/a Mariam Raja) v Kevin Elfrink, Javed Raja, and Any Other Occupants408 P.3d 809
- -7203 -S16285 Brandy Whittenton, et al. v Peter Pan Seafoods, Inc.
- -7200 -S15917 State of Alaska v Sean Wright404 P.3d 166
- -
-
-
Friday, September 15, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7199 -S15950 Radenko Jovanov v State of Alaska, DOC, et al.404 P.3d 140
- -
-
-
Friday, September 8, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7198 -S16235 Douglas Indian Association v Central Council of Tlingit and Haida Indian Tribes403 P.3d 1172
- -7197 -S16320 Tracy Harrell, as Personal Representative of the E v Brian Calvin403 P.3d 1182
- -
-
-
Friday, August 25, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7193 -S16371 Alaska Building, Inc. v Legislative Affairs Agency, et al.403 P.3d 1132
- -7196 -S16222 Timothy W. v Julia M.403 P.3d 1095
- -7191 -S16096 John (Scott) Hockema v Janet Hockema403 P.3d 1080
- -7192 -S16143, S16127 Pamela Darrow (f/k/a/ Creekmore), et al. v Alaska Airlines, Inc., et al., Alaska Airlines, Inc., et al. v Pamela Darrow (f/k/a Creekmore), et al.
- -7194 -S16558 Bill Wielechowski et al v State of Alaska, Alaska Permanent Fund Corp.403 P.3d 1141
- -7195 -S15637, S15657 Government Employees Insurance Company, et al. v Sandra Gonzalez, Sandra Gonzalez v Government Employees Insurance Company et al.403 P.3d 1153
- -
-
-
Friday, August 11, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -0099 -S16623 In the Disciplinary Matter Involving v Bryon E. Collins403 P.3d 1076
- -7189 -S16075, S16056 Cheryl M. Grove v Melvin B. Grove, Jr., Melvin B. Grove, Jr. v Cheryl M. Grove
- -7190 -S16223 Glenn Michael Prax, et al. v Victoria J. Zalewski400 P.3d 116
- -7188 -S16415 Barry H. (Father) v State of Alaska, DHSS, OCS404 P.3d 1231
- -
-
-
Friday, July 28, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7186 -S16504 Bob S. (Father) v State of Alaska, DHSS, OCS400 P.3d 99
- -
-
-
Friday, July 21, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7185 -S16064 Jean R. Kollander v Daryl E. Kollander400 P.3d 91
- -
-
-
Friday, July 7, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7184 -S16213 Travis M. Judd v Amanda Burns, f/k/a Judd397 P.3d 331
- -
-
-
Friday, June 23, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7182 -S16113 Comsult LLC and Roger Davis v Girdwood Mining Company397 P.3d 318
- -7183 -S15906 Charlie McAnally v Virgie Thompson, Jim Johansen, Carolyn Grabowski397 P.3d 322
- -
-
-
Friday, June 16, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7180 -S15885 Alaska Miners Association, et al. v John H. Holman, et al.397 P.3d 312
- -7179 -S15819, S15799 Richard Feeney v James Daggett and Nadia Daggett, James William Daggett and Nadia Tora Daggett v Richard L. Feeney
- -7181 -S16306 Caitlyn E. (Mother) v. State of Alaska, DHSS, OCS399 P.3d 646
- -
-
-
Friday, June 9, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7178 -S15814 Sunny Radebaugh v State of Alaska, DHSS397 P.3d 285
- -
-
-
Friday, June 2, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7176 -S15967 Deborah Ivy, et al. v Calais Company, Inc., et al.397 P.3d 267
- -7177 -S16383 Matthew. H. (Father) v State of Alaska, DHSS, OCS397 P.3d 279
- -
-
-
Friday, May 26, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7174 -S16242 Jay Yuk and Hee Su Yuk v Sidney L. Robertson, Sr. And Theresa A. Robertson397 P.3d 261
- -
-
-
Friday, May 19, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7169 -S16234 Cynthia A. Johnson v Robert N. Johnson394 P.3d 598
- -7170 -S16031 Richard A. Mattox v State of Alaska, Department of Corrections397 P.3d 250
- -7173 -S16155 David F. Thomson v Marjorie W. Thomson394 P.3d 604
- -7171 -S15900, S15929 Lisa Reasner v State of Alaska, et al., State of Alaska, et al. v Lisa Reasner394 P.3d 610
- -7172 -S15933 Michael Brandner, M.D. v Providence Health & Services-Washington394 P.3d 581
- -
-
-
Friday, April 28, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7168 -S16233 Jude M. (Father) v State of Alaska, DHSS, OCS394 P.3d 543
- -7167 -S15571, S15542 Sumitomo Metal Mining Pogo, LLC v Nathaniel A. Todeschi, Nathaniel A. Todeschi v Sumitomo Metal Mining Pogo, LLC394 P.3d 562
- -
-
-
Friday, April 21, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7166 -S15787 State of Alaska, Department of Administration v Shirley Shea394 P.3d 524
- -
-
-
Friday, April 7, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7165 -S16061, S16131 Kevin M. Easley v Tammy M. Easley, Tammy M. Easley v Kevin M. Easley394 P.3d 517
- -
-
-
Friday, March 31, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7164 -S16132 Alaska Fur Gallery, Inc. v Tok Hwang394 P.3d 511
- -
-
-
Friday, March 24, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7163 -S16034 Peter Haines as the personal representative of the v Comfort Keepers, Inc. and Luwana Witzleben393 P.3d 422
- -7162 -S15893 Recreational Data Services, Inc. v Trimble Navigation Limited, a California Corp.394 P.3d 491
- -
-
-
Friday, March 17, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7159 -S15836, S15645, S15655 Michael Cleary, et al. v Robert Smith, et al., Michael Cleary, et al. v Robert Smith, et al., Michael Cleary, et al. v Robert Smith, et al.393 P.3d 412
- -7160 -S15959 Sean Wright v Tamatha K. Anding, HSA, et al.390 P.3d 1162
- -7158 -S15990 Ronald M. Burton v Fountainhead Development, Inc.393 P.3d 387
- -7161 -S15802 Dennis O. v. Stephanie O.393 P.3d 401
- -
-
-
Friday, March 10, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7156 -S16032 In the Disciplinary Matter Involving a Judge390 P.3d 480
- -7157 -S15904 ITMO the Adoption of Hannah L.390 P.3d 1153
- -0098 -S16552 In the Disciplinary Matter Involving v Gayle Brown, Attorney392 P.3d 474
- -
-
-
Friday, March 3, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7155 -S15829 Marvin Kocurek v Richard Wagner390 P.3d 1144
- -7154 -S16218 Jessie Rice v John McDonald, Crystal McDonald, and Charles Rice390 P.3d 1133
- -7153 -S16167 David F. Coulson v Aaron T. Steiner390 P.3d 1139
- -
-
-
Friday, February 17, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7152 -S16110 Shanda Horning v Donovan Horning389 P.3d 61
- -
-
-
Friday, February 10, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7151 -S16206 Alex H. (Father) v. State of Alaska, DHSS, OCS389 P.3d 35
- -7150 -S16036 Central Recycling Services Inc. v Municipality of Anchorage389 P.3d 54
- -
-
-
Friday, January 27, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7148 -S15757 James M. Studley v Alaska Public Offices Commission389 P.3d 18
- -7149 -S15715 Charles E. Burnett v Government Employees Insurance Company389 P.3d 27
- -
-
-
Friday, January 20, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7147 -S15782 Gayle Horner-Neufeld v UAF/SFOS389 P.3d 6
- -
-
-
Friday, January 13, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7145 -S15989 Richard L. Wagner v Felicia A. Wagner386 P.3d 1249
- -7146 -S16051 Terry Stahlman v The Estate of James Goard386 P.3d 1245
- -
-
-
Friday, January 6, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7144 -S15956 Elissa Shanigan v Terrence Shanigan386 P.3d 1238
- -
-
-
Friday, December 30, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7143 -S15971 ITMO the Estate of Alva Marie Baker v 386 P.3d 1228
- -
-
-
Friday, December 16, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7139 -S15961, S15945 In the Disciplinary Matter Involving v Michael A. Stepovich, In the Disciplinary Matter Involving v Michael A. Stepovich386 P.3d 1205
- -7142 -S15891 Chevron USA, Inc., et al. v State of Alaska, Department of Revenue387 P.3d 25
- -7140 -S15669 Erin O'Kelley Long v Robert Arnold386 P.3d 1217
- -7141 -S14826, S14740 Cynthia Stewart, on behalf of herself and et al. v Midland Funding LLC, Alaska Law Offices Inc. et al, Janet Hudson, on behalf of herself and others v Citibank (South Dakota) NA, Alaska Law et al.387 P.3d 42
- -
-
-
Friday, December 9, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7138 -S15860 Bachner Company Incorporated v State of Alaska, Department of Administration387 P.3d 16
- -
-
-
Friday, December 2, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7136 -S15372 Rachel L. Thomas and Steven N. Thomas v Sarah B. Archer, et al.384 P.3d 791
- -7137 -S15784 Jonathan Bockus v First Student Services and Sedgwick CMS, Inc.384 P.3d 801
- -
-
-
Friday, November 25, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7134 -S15983 Kenisha Small, et al. v Austin M. Sayre384 P.3d 785
- -
-
-
Friday, November 18, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7133 -S15868, S15847 In the Matter of the Necessity v of the Hospitalization of J.S., ITMO the Hospitalization of Jacob S.384 P.3d 758
- -
-
-
Friday, November 4, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7132 -S15528, S15557 Peter Metcalfe v State of Alaska, State of Alaska v Peter Metcalfe382 P.3d 1168
- -
-
-
Wednesday, October 26, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7131 -S16152 Joy B. (Mother) v. State of Alaska, DHSS, OCS382 P.3d 1154
- -
-
-
Friday, October 21, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7130 -S15871 Harvey Mark Eder v M-K Rivers and Westchester Fire382 P.3d 1137
- -7129 -S15380, S15649 State of Alaska, et al. v Alaska Laser Wash, Inc., an Alaska corporation, Alaska Laser Wash, Inc v State of Alaska, Department of Transportation and382 P.3d 1143
- -
-
-
Wednesday, October 12, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1597 -S15997 Thomas Berry v Sharon Stockard
- -
-
-
Friday, September 23, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7127 -S15951 Timothy Jones v Randall Westbrook379 P.3d 963
- -7128 -S15801 Keven Windel and Marlene Windel v Thomas Carnahan379 P.3d 971
- -
-
-
Friday, September 16, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7126 -S15614 Matthew Fink and Diane Wilke v The Municipality of Anchorage, et al.379 P.3d 183
- -
-
-
Friday, September 2, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7125 -S16049 Abby D. v. Sue Y. and Todd Y.378 P.3d 388
- -
-
-
Friday, August 26, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7120 -S15955 Joyce A. del Rosario (fka Joyce A. Clare) v Kenneth A. Clare378 P.3d 380
- -7122 -S15965 William Johnson v State of Alaska, Department of Corrections380 P.3d 653
- -7121 -S15371 Ernest Frank Thomas v State of Alaska377 P.3d 939
- -7124 -S15654 Flint Hills Resources Alaska, LLC v Williams Alaska Petroleum, Inc., et al.377 P.3d 959
- -
-
-
Thursday, August 25, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7123 -S16017 Michele and Donald Marshall v Matthew Peter and Robert and Susan Nelson377 P.3d 952
- -
-
-
Friday, August 12, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7118 -S16041 James Henry Bingman, Sr. v City of Dillingham376 P.3d 1245
- -7119 -S15647 Floyd and Judy Cornelison v TIG, et al.376 P.3d 1255
- -7117 -S15748 Branwen Collier v William Harris377 P.3d 15
- -7116 -S15685 Linda Sellers v Stephan Kurdilla, and Daniel Stroud,377 P.3d 1
- -
-
-
Friday, August 5, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7115 -S15722 Willie K. Jackson v Municipality of Anchorage375 P.3d 1166
- -
-
-
Friday, July 22, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7114 -S15010, S15030, S15039 Planned Parenthood of the Great Northwest, et al. v State of Alaska, Loren Leman, Mia Costello, et al., State of Alaska v Planned Parenthood of the Great Northwest, et al., Loren Leman, Mia Costello, and Kim Hummer-Minnery v Planned Parenthood of the Great Northwest, et al.375 P.3d 1122
- -
-
-
Friday, July 1, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7113 -S15854 Olivia Lee-Magana v Jacob Carpenter375 P.3d 60
- -7112 -S15536 ITMO Hospitalization of Mark V.375 P.3d 51
- -
-
-
Friday, June 17, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7109 -S15948 Clementine F. (Mother) v. State of Alaska, DHSS, OCS375 P.3d 39
- -7111 -S15514 Joseph D. Huit v Ashwater Burns, Inc., et al.372 P.3d 904
- -7108 -S15615 Law Offices of Steven D. Smith, P.C. v Dana Ceccarelli385 P.3d 841
- -7110 -S15665 Arron N. Young v State of Alaska374 P.3d 395
- -
-
-
Friday, June 10, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7107 -S15684 Jerry B. v. Sally B.377 P.3d 916
- -
-
-
Friday, May 20, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7106 -S15450 In the Disciplinary Matter Involving: v Deborah Ivy374 P.3d 374
- -
-
-
Friday, May 13, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7105 -S15886 Kelley Patton Herring, n/k/a Kelley Patton v Gary Dwayne Herring373 P.3d 521
- -7102 -S15844 Danny Sherrill v Paulita Sherrill373 P.3d 486
- -7103 -S15588 Bonnie L. Luther v Stevie W. Lander373 P.3d 495
- -7104 -S15529 Helen A. Lingley v Alaska Airlines, Inc. and Dan Kane373 P.3d 506
- -
-
-
Friday, May 6, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7101 -S15682 City of Kenai v Cook Inlet Natural Gas Storage Alaska, LLC, et al.373 P.3d 473
- -
-
-
Friday, April 29, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7100 -S15840 City of Valdez v State of Alaska, et al.373 P.3d 240
- -7099 -S15725 Timothy G. v State of Alaska, DHSS, OCS372 P.3d 235
- -
-
-
Friday, April 22, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7098 -S15326, S15356 State of Alaska, Office Public Advocacy, et al v Estate of Jean Clark Rogers & Sidney Fadaoff, Estate of Jean Clark Rogers & Sidney Fadaoff v State of Alaska, Office of Public Advocacy, et al371 P.3d 614
- -
-
-
Friday, April 15, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7097 -S15746 Janelle L. Sweeney v Robert J. Organ371 P.3d 609
- -
-
-
Friday, April 8, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7096 -S15935 Laurie E. Vandenberg v State of Alaska371 P.3d 602
- -
-
-
Friday, March 25, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7091 -S15824 Ray Pursche v Matanuska-Susitna Borough371 P.3d 251
- -7094 -S15687 State of Alaska v Linden K. Fyfe370 P.3d 1092
- -7095 -S15683 Attorneys Liability Protection Society, Inc. v Ingaldson Fitzgerald, P.C.370 P.3d 1101
- -7092 -S15018 John C. Beeson & Xong Chao Beeson v City of Palmer, Alaska370 P.3d 1084
- -7093 -S14935 State of Alaska, Patrick Galvin, Comm. et al v Central Council of Tlingit and Haida Indian Tribes371 P.3d 255
- -
-
-
Friday, March 18, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -0090 -S15833 State of Alaska v Harold Pete Kankanton368 P.3d 613
- -7087 -S15870 Michael J. Mitchell v Johanna M. Mitchell370 P3d 1070
- -7088 -S15952 Moira M. v State of Alaska, DHSS, OCS370 P.3d 595
- -7090 -S15245 Qwynten Richards v University of Alaska370 P.3d 603
- -7089 -S15492 ITMO a Petition for Approval of a Minor Settlement v 371 P.3d 599
- -
-
-
Friday, March 11, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7086 -S15913 Trevor M. v State of Alaska, DHSS, OCS
- -
-
-
Friday, March 4, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7084 -S14915 Alaska Trustee, LLC, and Stephen Routh v Brett Ambridge and Josephine Ambridge372 P.3d 207
- -7085 -S15696 Alpine Energy, LLC v Matanuska Electric Association, et al369 P3d 245
- -
-
-
Friday, February 19, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7083 -S15805 Juan Martinez-Morales v Rhonda Martens367 P.3d 1167
- -
-
-
Friday, February 12, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7081 -S15489 Rene E. Limeres v Amy W. Limeres367 P.3d 683
- -7082 -S15592 Pierre Bernard v Alaska Airlines, Inc367 P.3d 1156
- -
-
-
Friday, February 5, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7079 -S15600 Victor Seybert, et al. v Glen Alsworth, Sr. and Lorene "Sue" Anelon367 P.3d 32
- -7080 -S15648 Neil D. Gunn v Nona S. Gunn367 P.3d 1146
- -
-
-
Friday, January 29, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7078 -S15793 ITMO Hospitalization of Heather R.366 P.3d 530
- -
-
-
Friday, January 15, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7077 -S15671 John Botson v Municipality of Anchorage367 P.3d 17
- -
-
-
Wednesday, January 13, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7076 -S15880 Denny M. v State of Alaska, DHSS, OCS365 P.3d 345
- -
-
-
Friday, January 8, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7075 -S15841, S15811 Ketchikan Gateway Borough v State of Alaska, State of Alaska v Ketchikan Gateway Borough
- -7074 -S15262 Jolene Sharpe, n/k/a Lyon v Jyzyk Sharpe366 P.3d 66
- -
-
-
Thursday, December 31, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7073 -S15662 Mead Treadwell, Lt. Gov. of State of Alaska v Alaska Fisheries Conservation Alliance, Inc.363 P.3d 105
- -
-
-
Friday, December 18, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7071 -S15126, S15135 Dolores Hunter as PR for the Estate of Benjamin v Philip Morris USA Inc., Philip Morris USA, INC., et al. v Dolores Hunter, as PR for the estate of B. Francis364 P.3d 439
- -
-
-
Friday, December 11, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7070 -S15599 Dea Dundas v James Dundas362 P.3d 468
- -7068 -S15478, S15488 Bradley K Laybourn, et al. v City of Wasilla, City of Wasilla v Bradley K. Laybourn, et al.362 P.3d 447
- -7069 -S15602 Susan M. v. Paul H.362 P.3d 460
- -
-
-
Friday, December 4, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7067 -S15502, S15512 City and Borough of Juneau v State of Alaska, et al., Pet. for Incorporation of the Petersburg Borough v City and Borough of Juneau, et al361 P.3d 926
- -
-
-
Wednesday, November 25, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7065 -S15862 Rowan B. Sr. v State of Alaska, DHSS, OCS361 P.3d 910
- -7063 -S15397 RBG Bush Planes, LLC v Alaska Public Offices Commission361 P.3d 886
- -7064 -S15546 Municipality of Anchorage v Lee O. Stenseth361 P.3d 898
- -7066 -S15633 Michael D. Brandner v Robert J. Pease, MD, et al.361 P.3d 915
- -
-
-
Friday, November 20, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7062 -S15434 Rocky L. Estrada, Sr., et al. v State of Alaska362 P.3d 1021
- -
-
-
Friday, October 30, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7061 -S15211, S15221 Joshua C. Richardson v Municipality of Anchorage, et al., Joshua C. Richardson v State of Alaska360 P.3d 79
- -
-
-
Friday, October 16, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7060 -S15590 Tammy S. Wells v Primo Barile358 P.3d 583
- -7059 -S14744, S14763 Jilu H. Luker and George W. Luker II v Dwane J. Sykes, Dwane J. Sykes v Jilu H. Luker and George W. Luker II357 P.3d 1191
- -
-
-
Friday, October 9, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7058 -S15403 Ryan Sanders v State of Alaska364 P.3d 412
- -
-
-
Friday, September 25, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7056 -S15595 Cook Inlet Fisherman's Fund v Alaska Department of Fish and Game and Kenai King357 P.3d 789
- -7053 -S15634 Erica G. v Taylor Taxi, Inc., et al.357 P.3d 783
- -7055 -S15613 Thad Snider v Michele Snider357 P.3d 1180
- -7057 -S15270 Alaskasland.com, LLC v Kevin Cross, et al.357 P.3d 805
- -7051 -S15328 ITMO Hospitalization of Reid K.357 P.3d 776
- -7052 -S15311 Terri Lin Ruppe v Terry Curtis Ruppe358 P.3d 1284
- - -S15676 Alaska Commercial Fishermen's Memorial v City and Borough of Juneau357 P.3d 1172
- -
-
-
Friday, September 18, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7050 -S15340 Pamela Lea Guerrero v Juan Jose Guerrero362 P.3d 432
- -7049 -S15253, S15014 Clifford W. Tagaban v City of Pelican, Clifford W. Tagaban v City of Pelican
- -
-
-
Friday, September 11, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7048 -S15533 City of Hooper Bay v Judy Bunyan, et al.359 P.3d 972
- -
-
-
Friday, September 4, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7046 -S15496 Helen Wilson v State of Alaska, Dept. of Law, et al355 P.3d 549
- -7047 -S15675 Hope P. v Flynn G.355 P.3d 559
- -
-
-
Tuesday, September 1, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7045 -S15688 Diana P. v State of Alaska, DHSS, OCS355 P.3d 541
- -
-
-
Friday, August 28, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7044 -S15693 Caroline J. v Theodore J.354 P.3d 1085
- -7037 -S15735 Matthew P. v. Gail S.354 P.3d 1044
- -7040 -S15729 Cynthia Fernandez v David M. Fernandez358 P.3d 562
- -7043 -S15646 Jennifer L. v State of Alaska, DHSS, OCS357 P.3d 110
- -7041 -S15428 ITMO Hospitalization of Dakota K.354 P.3d 1068
- -7038 -S15344 Ray DeVilbiss v Matanuska-Susitna Borough356 P.3d 290
- -7042 -S15159 Oakly Enterprises, LLC, and Ryan Friesen v NPI, LLC., et al.354 P.3d 1073
- -7036 -S15121 Kenneth H. Manning v State of Alaska Dept. of Fish and Game, Kevin Saxb355 P.3d 530
- -7039 -S14696, S14705, S14706, S14716, S14725 State of Alaska Department of Revenue v BP Pipelines (Alaska) Inc., ConocoPhillips et al., North Slope Borough v BP Pipelines (Alaska) Inc., ExxonMobil et al., BP Pipelines (Alaska) Inc., ConocoPhillips et al. v State of Alaska Department of Revenue, et al., City of Valdez v BP Pipelines (Alaska) Inc., ConocoPhillips et al., Fairbanks North Star Borough v BP Pipelines (Alaska) Inc., ExxonMobil Pipeline et354 P.3d 1053
- -
-
-
Friday, August 21, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7035 -S15619 Pacifica Marine, Inc. and Mike Benchoff v State of Alaska, DNR, et al.356 P.3d 780
- -
-
-
Friday, August 14, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7034 -S15596 Maria D. Duenas-Rendon v Wells Fargo Bank, N.A., successor to Wells Fargo354 P.3d 1037
- -7033 -S15383 Luis R. Rodriguez v Alaska State Commission for Human Rights354 P.3d 380
- -7031 -S15449 Geotek Alaska, Inc. v Jacobs Engineering Group, Inc., et al.354 P.3d 368
- -7030 -S15337 Mark B. Horne v Belinda Touhakis356 P.3d 280
- -7032 -S15719 Remy M. v State of Alaska, DHSS, OCS356 P.3d 285
- -
-
-
Friday, August 7, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7028 -S15277 James P. McGlinchy d/b/a M&M Constructors v State of Alaska, Dept of Natural Resources, et al.354 P.3d 1025
- -7029 -S15622 Theresa L. v State of Alaska, DHSS, OCS353 P.3d 831
- -7027 -S14996 Andrea C. v. Marcus K.355 P.3d 521
- -
-
-
Friday, July 31, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7025 -S15297 Gregory T. Erkins v Alaska Trustee, LLC, et al.355 P.3d 516
- -7026 -S15141, S15152 James E. Barber v Joseph Schmidt, et al., Jack L. Earl, Jr. v Joseph Schmidt, et al., State of Alaska DOC354 P.3d 158
- -
-
-
Friday, July 24, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7022 -S15332 James D. Pister, Skyrad Medical Imaging, et al. v State of Alaska, Dept. Of Revenue354 P.3d 357
- -7023 -S15636 Brant McGee v Alaska Bar Association353 P.3d 350
- -7024 -S15473 Stefanie Ross and John Bauman v Carl Bauman353 P.3d 816
- -7021 -S15370 Grant Miller and Whiting Harbor Aquafarm, LLC v State of Alaska, DEC, et al.353 P.3d 346
- -
-
-
Friday, July 17, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7020 -S15347 Kimber Ray v Megan Draeger353 P.3d 806
- -7019 -S15516 George G. Jacko, and Jackie G. Hobson, Sr. v State of Alaska, et al.353 P.3d 337
- -
-
-
Friday, July 10, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7018 -S15479 Shirley Hagen, Wife and Personal Representative fo v Gunnar Strobel, M.D., and Alan E. Skolnick, M.D.353 P.3d 799
- -
-
-
Thursday, July 2, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7017 -S15281 Aimee L. Moore v Donald Olson, et al.351 P.3d 1066
- -
-
-
Friday, June 26, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7016 -S15554 Michael J. Cooper and Central Plumbing & Heating v Samuel L. Thompson353 P.3d 782
- -
-
-
Friday, June 12, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7015 -S15288 Sarah D. v. John D.352 P.3d 419
- -
-
-
Friday, June 5, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -7014 -S15266 Tracy G. Hutton v State of Alaska350 P.3d 793
- -
-
-
Friday, May 29, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7012 -S15089, S15059, S15060 Trustees for Alaska v Pebble Limited Partnership, Alaska Conservation Foundation v Pebble Limited Partnership, Nunamta Aulukestai, Ricky Delkittie, Sr., et al. v State of Alaska, Dept. of Natural Resources, et al350 P.3d 273
- -7013 -S15712 Brandy Moore v Jeremy Moore349 P.3d 1076
- -7011 -S14560, S14579 Nunamta Aulukestai, Ricky Delkittie, Sr., et al. v State of Alaska, Dept. of Natural Resources, et al, State of Alaska, Dept of Natural Resources, et al. v Nunamta Aulukestai, Ricky Delkittie, Sr., et al.351 P.3d 1041
- -
-
-
Friday, May 15, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7006 -S14752 Andrew Engstrom v Becky Jo Engstrom350 P.3d 766
- -7009 -S15209 Katherine Devine and Thomas Sindorf v Great Divide Insurance Company, et al.350 P.3d 782
- -7007 -S15594 Ace Delivery & Moving, Inc. v State of Alaska, Human Rights Comm,, et al350 P.3d 776
- -7010 -S15513 Michael D. Brandner, M.D. v Providence Health & Services--Washington, et al.349 P.3d 1068
- -
-
-
Friday, May 1, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7005 -S15385 Paige Vonder Haar v State of Alaska, Dept of Admin, Div of Motor Vehic349 P.3d 173
- -7004 -S15581, S15585 Payton S. v State of Alaska, DHSS, OCS, Effie B. v State of Alaska, DHSS, OCS349 P.3d 162
- -7003 -S15222 Ranes & Shine, LLC v MacDonald Miller Alaska, Inc.355 p3d 503
- -
-
-
Friday, April 24, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -7001 -S15339 State of Alaska Department of Health and Social Se v Lester Gross347 P.3d 116
- -7000 -S15419 Michael L. Wagner v State of Alaska347 P.3d 109
- -
-
-
Friday, April 17, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6998 -S15437 Arthur J. Kinnan v Sitka Counseling, Michael McGuire, & Eric Skousen349 P.3d 153
- -6997 -S15566 Faye H. v James B.348 P.3d 876
- -6999 -S15364 Alaska Police Standards Council v Lance Parcell348 P.3d 882
- -
-
-
Friday, April 10, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6996 -S15381 Castle Properties, Inc. v Wasilla Lake Church of The Nazarene347 P.3d 990
- -
-
-
Friday, April 3, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6994 -S15265 Tommie Patterson v Geico Insurance Company347 P.3d 562
- -6995 -S15045 William M. Foondle v Angela M. O'Brien, Daniel Lord, Joe Montague, etal346 P.3d 970
- -
-
-
Friday, March 27, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6990 -S15354 Bruce Andrew Baker dba Baker Leasing, LLC v Ryan Air, Inc.345 P.3d 101
- -6993 -S15439 Briana A. Norris v Richard K. Norris345 P.3d 924
- -6991 -S15456 Morrill Mahan v Jessica Mahan347 P.3d 91
- -6992 -S14516 Alaska Fish and Wildlife Conservation Fund (AFWCF) v State of Alaska and Ahtna Tene Nene'347 P.3d 97
- -
-
-
Friday, March 20, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6989 -S14917 Paul T. Stavenjord v Joseph Schmidt, et al.344 P.3d 826
- -
-
-
Friday, March 13, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6986 -S14875, S14856 First National Bank Alaska v Alaska Fur Gallery, Inc., Hernandez, et al., Alaska Fur Gallery, Inc., Hernandez and et al. v First National Bank Alaska345 P.3d 76
- -6988 -S15341 Ronald A. Brooks v Joanne E. Horner and Helen H. Warner344 P.3d 294
- -6987 -S15240 Keith Red Elk v Laura B. McBride344 P.3d 818
- -
-
-
Friday, March 6, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6985 -S15582 ITMO: the Estate of Offenesia Bavilla v 343 P.3d 905
- -
-
-
Friday, February 20, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6984 -S15586 Sylvia L. v State of Alaska, DHSS, OCS343 P.3d 425
- -
-
-
Friday, February 13, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6983 -S15393 Kenneth Goldsbury v State of Alaska342 P.3d 834
- -
-
-
Friday, January 30, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6981 -S15468 Richard Hughes, et al v Mead Treadwell, et al341 P.3d 1121
- -6982 -S15070, S15067 Mary Hicks v State of Alaska, Jorge T. Moreno v State of Alaska
- -
-
-
Friday, January 23, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6980 -S14947 James Bush v Craig Elkins, et al.342 P.3d 1245
- -
-
-
Friday, January 9, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6979 -S15472 Shirley M. v State of Alaska, DHSS, OCS342 P.3d 1233
- -6978 -S15217 RBG Bush Planes, LLC., et al. v Kenneth Kirk, et al.340 P.3d 1056
- -
-
-
Friday, December 26, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6976 -S15130, S15219 William Ebert, Holly Ebert, and Connie J. v Bruce L., William Ebert, Holly Ebert, and Connie J. v Bruce L.
- -6977 -S14884 Ann Ellingson and Joanne Dorman, et al. v Denby Lloyd, Commissioner, Alaska Department et al342 P.3d 825
- -
-
-
Friday, December 12, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6974 -S15359 In the Matter of the Adoption of S.F., a Minor. v 340 P.3d 1048
- -6975 -S15366 In the Disciplinary Matter Involving Melinda Miles v 339 P.3d 1009
- -6973 -S15374 Christopher Jinsoo Chung v Rora Park, Lakeview LLC339 P.3d 351
- -
-
-
Friday, November 28, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6971 -S15382 Jason Robert Green v Courtney Nickole Parks338 P.3d 312
- -6972 -S15166 State of Alaska, Div of Workers' Compensation v Titan Enterprises, LLC et al.338 P.3d 316
- -6969 -S15139 Res. Bay Auto Parts, Inc. and Dillip Mullings v Dennis Alder338 P.3d 305
- -6968 -S14916 William Brewer II, Donna Brewer, et al., v State of Alaska341 P.3d 1107
- -6970 -S15017 Joe D. Garibay v State of Alaska341 P.3d 1107
- -
-
-
Friday, November 21, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6967 -S15318 Asa'carsarmiut Tribal Council v John D. Wheeler, III & Jeanette Myre337 P.3d 1182
- -
-
-
Friday, November 14, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6966 -S14883, S14864 Royal Wolf Lodge, Linda Branham and Chris Branham v Jeff Moody, Jeff Moody v Royal Wolf Lodge, Linda Branham and Chris Branham
- -
-
-
Friday, November 7, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6965 -S15351 C.W. (Mother) v State of Alaska, DHSS, OCS336 P.3d 1258
- -
-
-
Friday, October 31, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6964 -S15280 Richard J. Villars v Olga H. Villars336 P.3d 701
- -
-
-
Friday, October 24, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6963 -S15163 Robert J. Farmer v Peggy Jo Watson, et al.336 P.3d 160
- -
-
-
Thursday, October 16, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6961 -S15172 Kelli M. Riggs v Eric E. Coonradt335 P.3d 1103
- -6960 -S15140 Akeem J. Humphrey v Lowe's Improvement Warehouse, Inc., et al.337 P.3d 1174
- -6962 -S15314 Fred Becker V v Fred Meyer Stores, Inc. and Devin W. Lilly335 P.3d 1110
- -
-
-
Friday, October 10, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6957 -S15346 J.H. (Father) v State of Alaska, DHSS, OCS
- -6958 -S15212 Karlee A. Dodge fka Karlee A. Sturdevant v Frank W. Sturdevant, III335 P.3d 510
- -6959 -S14963 Ramona Christensen and Jack Scott v Alaska Sales & Service, Inc.335 P.3d 514
- -
-
-
Friday, September 19, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6955 -S15158 Graham R. v Jane S.334 P.3d 688
- -6956 -S14492 Thomas E. Kyte v Deidre L. Stallings334 P.3d 697
- -
-
-
Friday, September 12, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6952 -S14969 Ray Briggs v City of Palmer, Alaska, a municipal corporation333 P.3d 746
- -6953 -S14776 Nelson Kanuk, a minor by and through his guardian v State of Alaska, Department of Natural Resources335 P.3d 1253
- -6954 -S14670 Native Village of Tununak v State of Alaska, DHSS, OCS, et al.334 P.3d 165
- -
-
-
Friday, September 5, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6951 -S15218 William G. Osborne v State of Alaska, Department of Corrections332 P.3d 1286
- -6950 -S15232 Gary J. Houston v Meredith J. Wolpert332 P.3d 1279
- -
-
-
Friday, August 29, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6949 -S15376 S.R. (Mother) v State of Alaska, DHSS, OCS332 P.3d 1268
- -6947 -S15006, S15025 John E. Adamson v Municipality of Anchorage & NovaPro Risk Solutions, Municipality of Anchorage & NovaPro Risk Solutions v John E. Adamson333 P.3d 5
- -6948 -S14524, S14503 Barbara Konrad v Cody Lee and Stacey Dean, Cody Lee and Stacey Dean, Husband and Wife v Barbara Konrad
- -
-
-
Friday, August 22, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6945 -S14960 ITMO the Protective Proceedings of Vernon H.332 P.3d 565
- -9644 -S14897 David Kelly v Anna Young
- -6942 -S14736 Nautilus Marine Enterprises, Inc. v Exxon Mobil Corporation and Exxon Shipping Company332 P.3d 554
- -6944 -S14857, S14858 Anna Young v David Kelly, Anna Young v David Kelly334 P.3d 153
- -6946 -S15251 In the Matter of Candace A. (minor)332 P.3d 578
- -6943 -S15365 Sue L. Grundberg v Alaska State Commission for Human Rights333 P.3d 1
- -
-
-
Friday, August 15, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6940 -S15034 Clifton O. Tweedy v Matanuska-Susitna Borough Board of Adjustment332 P.3d 12
- -6941 -S14965 Karen Greene v Beverly Tinker332 P.3d 21
- -
-
-
Friday, August 8, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6935 -S13978 Alaska Trustee, LLC, et al. v Elisabeth B. Bachmeier332 P.3d 1
- -6939 -S15056 Rodney S. Pederson, an individual v Arctic Slope Regional Corporation, et al.331 P.3d 384
- -6938 -S14893, S14874 Susan Kruse, Denmar Wells, IV, Jay Hanson, et al. v Alaska Judicial Council, and Larry Cohn, et al., Alaska Judicial Council, and Larry Cohn, et al. v Susan Kruse, Denny Wells, Jay Hanson, et al.
- -6934 -S14713 James Price v Kenai Peninsula Borough & Johni Blankenship, Clerk331 P.3d 356
- -6937 -S15154 Leo Blas v State of Alaska, Dept of Labor331 P.3d 363
- -6936 -S14495 Linda R. Moffitt v Tracy A. Moffitt and Kathryn A. Moffitt341 P.3d 1102
- -
-
-
Friday, August 1, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6931 -S15088 Matthew Richter v Shelley Richter330 P.3d 934
- -6930 -S15355 Todd Heber v Tamara Heber330 P.3d 926
- -6932 -S14910, S14929 Claire A. Donahue v Ledgends, Inc. d/b/a Alaska Rock Gym, Ledgends, Inc. dba Alaska Rock Gym v Claire Donahue331 P.3d 342
- -
-
-
Wednesday, July 30, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6933 -S15046 Brent McCormick v Chippewa Inc and Louis Olsen330 P.3d 345
- -
-
-
Friday, July 25, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6928 -S15087 Silver Bow Construction v Alaska Department of Administration,330 P.3d 922
- -6929 -S14782 Lennie Lane III v Annie Ballot330 P.3d 338
- -6927 -S15230 Deborah Harris v Millennium Hotel; New Hampshire Ins. Co.330 P.3d 330
- -
-
-
Friday, July 18, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6925 -S15108 Grace L. (Mother) v State of Alaska, DHSS, OCS,329 P.3d 980
- -6924 -S14729 Schlumberger Technology Corporation & Subsidiaries v State of Alaska, Department of Revenue331 P.3d 334
- -6926 -S14103 Rozella Simmonds and Jeff Simmonds v Edward Parks329 P.3d 995
- -
-
-
Friday, July 11, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6923 -S15055, S14945 Daniel W. Oberlatz, Raymond 'Sony' Peterson et al v Lake and Peninsula Borough Assembly, et al., Lake and Peninsula Borough Assembly, Mayor et al. v Daniel W. Oberlatz, Robert B. Gillam, et al.
- -
-
-
Thursday, July 3, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6922 -S14865 Kristina B. v Edward B.329 P.3d 202
- -6921 -S15037, S14588 Comsult LLC and Roger Davis v Girdwood Mining Company, Girdwood Mining Company v Comsult, LLC and Rodger Davis
- -
-
-
Friday, June 27, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6920 -S14557 Nathawn Johnson v State of Alaska328 P.3d 77
- -6919 -S14981 State of Alaska, Office of Children's Services v Alecia Rae Mullins, Shayna Lynn Mullins, et al.328 P.3d 1038
- -
-
-
Friday, June 20, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6918 -S15124 Paula Frackman v Rick Enzor327 P.3d 878
- -6916 -S15160 Daniel Brown v Personnel Board for the City of Kenai327 P.3d 871
- -6915 -S14442 Ekaterina V. Pouzanova v Kuuipo T. Morton327 P.3d 865
- -
-
-
Friday, June 13, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6914 -S15120 Richard Louie v B.P. Exploration (Alaska), Inc. and ACE USA327 P.3d 204
- -6913 -S15144 Sheila C. Brandner v Municipality of Anchorage327 P.3d 200
- -
-
-
Friday, May 23, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6912 -S15042 Yelena R. v George R.326 P.3d 989
- -
-
-
Friday, May 16, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6911 -S14534 ITMO Hospitalization of Mark V.
- -
-
-
Friday, May 9, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6910 -S14213, S14194 Alaska Communications Systems Holdings, Inc. v Brett Conley and Marina Conley, Brett Conley and Marina Conley v Alaska Communications Systems Holdings, Inc.
- -6908 -S15004 Davis Wright Tremaine LLP v State of Alaska, Dept. of Administration324 P.3d 293
- -6907 -S14881 Justin Pralle v Jessica Milwicz324 P.3d 286
- -6906 -S14718, S14728, S14737 BP Pipelines (Alaska) Inc., et al., v State of Alaska, et al., City of Valdez & Fairbanks North Star Borough v BP Pipelines (Alaska) Inc., et al., Fairbanks North Star Borough v BP Pipelines (Alaska) Inc., et al.327 P.3d 185
- -6909 -S14830 Marjorie Achman, on behalf of Charles T. Kemp III v State of Alaska323 P.3d 1123
- -6905 -S14853 Tommie Patterson v Sheila Cox, Ford Motor Company323 P.3d 1118
- -
-
-
Friday, May 2, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6903 -S14701 State of Alaska v Public Safety Employees Association323 P.3d 670
- -6904 -S14552 Jennifer Lockwood v Geico General Insurance Company323 P.3d 691
- -
-
-
Friday, April 25, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6898 -S14521 The State of Alaska &The Municipality of Anchorage v Julie Schmidt, Gayle Schuh, Julie Vollick, et al.323 P.3d 647
- -6902 -S14680 AAA Valley Gravel, Inc. v Alicia Totaro and Herman Ramirez325 P.3d 529
- -6899 -S14820 Anita Hendricks-Pearce, as PR of the Estate of DWP v State of Alaska, Department of Corrections323 P.3d 30
- -6901 -S14887 Raymond Boulds v Elena Nielsen323 P.3d 58
- -6900 -S14978 Glen Alsworth, Sr. and Lorene Sue Anelon v Victor Seybert, John Holman, Kimberly Williams, et323 P.3d 47
- -6897 -S12944 Byron E. Charles v State of Alaska326 P.3d 978
- -
-
-
Friday, April 18, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6895 -S14904 Jean B. Kollander v Daryl E. Kollander322 P.3d 897
- -6894 -S14770 Olive Kathryn Purcella v Olive Kathryn Purcella Trust325 P.3d 987
- -6896 -S14587 Richard A. Mattox v State of Alaska, Department of Corrections322 P.3d 23
- -
-
-
Friday, April 11, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6892 -S14476 Shirley A. Steward, as PR of Leah and Warren Davis v State of Alaska322 P.3d 860
- -6887 -S14796, S14686, S14775 Robert Rude, Harold Rudolph, Brenda Nicoli, et al. v Cook Inlet Region, Inc., Robert W. Rude, Harold F. Rudolph, Brenda Nicoli, v Cook Inlet Region, Inc. [CIRI], Cook Inlet Region, Inc. [CIRI] v Robert W. Rude, Harold F. Rudolph, Brenda Nicoli &
- -6889 -S14759 David E. Sandberg v Brianna E. Sandberg, (n/k/a Brianna E. Whitney)322 P.3d 879
- -6891 -S14794 Leo A. Regner v Northstar Volunteer Fire Department, Inc., et al.323 P.3d 16
- -6888 -S14812 Harold Hawkins v Rosalind Attatayuk322 P.3d 891
- -6890 -S14987 Healy Lake Village d/b/a Mendas Cha-Ag Tribe v Mt. McKinley Bank, et al.322 P.3d 866
- -6893 -S15207 E.D. (Mother) v State of Alaska, DHSS, OCS322 P.3d 842
- -
-
-
Friday, April 4, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6886 -S14256 ITMO Hospitalization of Gabriel C.324 P.3d 835
- -
-
-
Friday, March 28, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6885 -S14571, S14931 Max & Peggy Espeland v OneWest Bank FSB, et al., Max and Peggy Espeland v IndyMac Federal Bank, FSB, IndyMac Mortgage et al.323 P.3d 2
- -6883 -S15315 Municipality of Anchorage v Sam Andrew Holleman and Jason Alward321 P.3d 378
- -6882 -S14818 Todd Shumway v Betty Black Living Trust, Dale Lockwood, et al.321 P.3d 372
- -6884 -S14724 Peter Zamarello v Robert Reges; Ruddy, Bradley, Kolkhorst & Reges et321 P.3d 387
- -
-
-
Friday, March 21, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6880 -S14753 Bret F. Maness v Mike Gordon, William Miller, et al.325 P.3d 522
- -6879 -S14863, S14823, S14873 Lawrence Hartig, Commissioner of the Alaska et al. v Alaska Community Action on Toxics, et al., Alaska Community Action on Toxics, et al. v Lawrence Hartig, Commissioner of Alaska DEC et al., Alaska Railroad Corporation, Lawrence Hartig et al v Alaska Community Action on Toxics, et al.
- -6878 -S14989 Daniel V. Dennis v State of Alaska, Department of Administration, DMV320 P.3d 1150
- -6881 -S15107 Rowen B., Sr (Father) and Rika F. (Mother) v State of Alaska, DHSS, OCS320 P.3d 1152
- -
-
-
Friday, March 14, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6874 -S14674, S14654, S14953 Williams Alaska Petroleum, Inc. v ConocoPhillips Alaska, Inc., ConocoPhillips Alaska, Inc. v Williams Alaska Petroleum, Inc., ConocoPhillips Alaska, Inc v Williams Alaska Petroleum, Inc.
- -6875 -S14970 Rene E. Limeres v Amy W. Limeres320 P.3d 291
- -6877 -S15076 M.A.O (Grandmother) v State of Alaska, DHSS, OCS320 P.2d 303
- -6876 -S14262, S14254 M-K Rivers, Employer & Ace Indemnity Insurance Co. v Willard L. Harris, Willard L. Harris v M-K Rivers, Employer, & Ace Indemnity Insurance Co
- -
-
-
Friday, March 7, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6871 -S14357 Gregg Conitz v Alaska State Commission for Human Rights, et al.325 P.3d 501
- -6873 -S14750 David Szabo and Jane Szabo v Municipality of Anchorage320 P.3d 809
- -6872 -S15128 James R. v Kylie R.320 P.3d 273
- -6870 -S15149 S.H. (Mother) v State of Alaska, OCS320 P.3d 284
- -
-
-
Friday, February 28, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6869 -S15065 Stephanie W. v Maxwell V.319 P.3d 219
- -
-
-
Friday, February 21, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6866 -S14891 Kalindi McAlpine v Steven Priddle321 P.3d 345
- -6868 -S14305 Todd Christianson v Conrad-Houston Insurance318 P.3d 390
- -
-
-
Wednesday, February 19, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6867 -S14116, S14095, S14125 Fairbanks North Star Borough, et al. v BP Pipelines (Alaska) Inc., et al., BP Pipelines (Alaska) Inc., et al. v State of Alaska, Dept. of Revenue, et al., City of Valdez v BP Pipelines (Alaska) Inc., et al.
- -
-
-
Friday, February 14, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6835 -S14896 Denali Citizens Council v State of Alaska,DNR, Usibelli Coal Mine318 P.3d 380
- -6863 -S14938 Marilyn A. Coppe v Michael Bleicher, MD and Laurie Bleicher, MD et al318 P3d 369
- -6864 -S14843 Adam Sagers v Colleen Sackinger318 P.3d 860
- -
-
-
Friday, February 7, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6862 -S15100 ITMO Hospitalization of Daniel G.320 P.3d 262
- -
-
-
Friday, January 3, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6861 -S14822, S14827, S14924 Suzette Welton v State of Alaska, Department of Corrections, Doctor Suzette Welton v State of Alaska, Department of Corrections, Suzette Welton v State of Alaska, Department of Corrections315 P.3d 1196
- -
-
-
Friday, December 27, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6860 -S14496 Willie K. Jackson v Amie Sey315 P.3d 674
- -
-
-
Friday, December 20, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6859 -S14642 Michael S. Reilly v Jaime M. Northrop, SOA, Dept. of Revenue, CSSD314 P.3d 1206
- -6858 -S14964 Marci Hawkins v Sonia M. and Daniel Williams314 P.3d 1202
- -
-
-
Tuesday, December 17, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6857 -S13764 ITMO Hospitalization of Stephen O.314 P.3d 1185
- -
-
-
Friday, December 13, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6853 -S14994, S14810 P.J. (Father) v State of Alaska, OCS, P.J. (Father) v State of Alaska, OCS
- -6851 -S14783 Jim Morrison v NANA WorleyParsons, LLC314 P.3d 508
- -6852 -S14784 Delbert B. Urban v Martha C. Urban314 P.3d 513
- -6854 -S14610 Jason R. Glover v Beverly E. Ranney314 P.3d 535
- -6856 -S14468 State of Alaska v Jimmy Jack Korkow314 P.3d 560
- -6855 -S14424 Daniel Lum, Polly Lum, Joseph Aveoganna, et al. v Gwen Koles fka Grimes, Benjamin Hunsaker, et al.314 P.3d 546
- -
-
-
Friday, December 6, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6848 -S14629 Bachner Co., Inc. and Bowers Investment C o. v James Weed, et al.315 P.3d 1184
- -5850 -S14475 James E. Barber v State of Alaska, Dept. of Corrections314 P.3d 58
- -6850 -S14504 James E. Barber v State of Alaska, Department of Corrections
- -6849 -S13551 Richard Heller v State of Alaska Department of Revenue314 P.3d 69
- -
-
-
Friday, November 29, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6847 -S14328 James Dault and Shala Dobson v Edward Shaw322 P.3d 84
- -6846 -S14248 Kevin Co v Kelly Matson313 P.3d 521
- -6845 -S14811 Michele Lyn Beach v Sonia Handforth-Kome, Individually and Iliuliuk314 P.3d 53
- -
-
-
Friday, November 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6844 -S14814 Tammy Wanner-Brown v Conrad Brown312 P.3d 1106
- -6842 -S14760 Elizabeth H. Rollins v State of Alaska, Alcoholic Beverage Control Board312 P.3d 1091
- -6843 -S14679 Cynthia L. Fernandez v David M. Fernandez312 P.3d 1098
- -6841 -S15003 I.E. (Grandmother) v State of Alaska, OCS312 P.3d 850
- -
-
-
Wednesday, November 13, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6837 -S14985 C.K. (Mother) v State of Alaska, Office of Children's Services311 P.3d 637
- -
-
-
Friday, November 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6840 -S14948 A.M. (Mother) v State of Alaska, DHSS, OCS320 P.3d 253
- -
-
-
Friday, November 1, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6839 -S14808 Kimberly Y. Harris v John G. Governale311 P.3d 1052
- -
-
-
Friday, October 25, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6836 -S14798 Aaron J. Pfeil v Chachee M. Pfeil311 P.3d 649
- -6838 -S14326 Tesoro Corporation and Subsidiaries v State of Alaska, Department of Revenue312 P.3d 830
- -
-
-
Friday, October 11, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6834 -S14643 Joshua Childs v Christina Childs310 P.3d 955
- -6835 -S14541 SOP, Inc. v State of Alaska, Dept. of Natural Resources, et al310 P.3d 962
- -6833 -S14957 S.B. (Father) v State of Alaska, DHSS, OCS310 P.3d 943
- -
-
-
Friday, October 4, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6832 -S14975 K.S. (Father) v State of Alaska, OCS309 P.3d 1262
- -
-
-
Friday, September 27, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6831 -S14568 Debra P. v. Laurence S.309 P.3d 1258
- -
-
-
Friday, September 20, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6829 -S14593 Sean A. Janes and Jennifer M. Janes, et al. v Alaska Railbelt Marine, LLC, et al.309 P.3d 867
- -6827 -S14988 C.P. (Father) v State of Alaska, DHSS, OCS309 P.3d 860
- -6826 -S14715 Mallory D. v. Malcolm D.309 P.3d 845
- -6828 -S14771 C.O. (Mother) v State of Alaska, OCS309 P.3d 850
- -
-
-
Friday, September 13, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6824 -S14678 Garold Charles v Anthony Stout, Tara Loraine Stout & Credit Union 1308 P.3d 1138
- -6823 -S14791 Nancy M. v. John M.308 P.3d 1130
- -6822 -S14809 Frank Griswold v Homer City Council310 P.3d 938
- -6825 -S14170 Craig Schweitzer, Airflow Leasing, LLC , et al. v Salamatof Air Park Subdivision Owners, et al.308 P.3d 1142
- -
-
-
Friday, September 6, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6818 -S14606 North Pacific Erectors, Inc. v State of Alaska, Dept of Administration, et al.337 P.3d 495
- -6819 -S14855 Hugo Rosales v Icicle Seafoods, Inc. and Seabright Insurance Co.316 P.3d 580
- -6821 -S14764 Joshua C. Wilhour v Jacqueline S. Wilhour308 P.3d 884
- -
-
-
Friday, August 30, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6817 -S14148 Alaskan Crude Corporation and James W. White v State of Alaska, Alaska Oil & Gas Conservation Com309 P.3d 1249
- -
-
-
Friday, August 23, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6815 -S14304 Joel and Darlene Wiersum v Paul Harder and Lisa Wietfeld316 P.3d 557
- -6813 -S14632 Troy Johnson v The Aleut Corporation307 P.3d 942
- -6816 -S14466 L Street Investments v Municipality of Anchorage and Anchorage et al.307 P.3d 965
- -6814 -S14483 Alaskan Adventure Tours, Inc., et al. v The City and Borough of Yakutat307 P.3d 955
- -
-
-
Friday, August 16, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6810 -S14600, S14580 Mary E. Neary and Patrick T. Neary, et al. v United Services Automobile Association, United Services Automobile Association v Mary E. Neary and Patrick T. Neary, et al.
- -6807 -S14172 Bret F. Maness v John Daily, Eric Smith, et al307 P.3d 894
- -6809 -S14762 Alvin Kennedy and Eliezer Feliciano v Municipality of Anchorage305 P.3d 1284
- -6808 -S14816 David S. v Jared H. and Connie H,308 P.3d 862
- -6812 -S14792 Stephen D. v. Nicole J.308 P.3d 875
- -6811 -S13643, S13613 Leon Knowles and E. Brown Inc et al. v Edward Brown and Heidi Brown, Edward Brown and Heidi Brown v Leon Knowles and E. Brown Inc. D/b/a Intl Steel
- -
-
-
Friday, August 9, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6806 -S14596 Kenneth T. Stanhope v Maryna V. Stanhope306 P.3d 1282
- -6805 -S13899 Uwe Kalenka v Jadon, Inc d/b/a Chilkoot Charlie's et al.305 P.3d 346
- -
-
-
Friday, August 2, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6803 -S14502 Gaylord E. Schaub v Theresa M. Schaub305 P.3d 337
- -6804 -S13745, S13675 Burr, Pease and Kurtz and John C. Siemers v Nicholas A. Gefre and Charles T. Beck, et al., Nicholas Gefre, Charles Beck and Petro Alaska, Inc v Davis Wright Tremaine & Burr Pease & Kurtz, et al.
- -
-
-
Friday, July 26, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6802 -S14132, S14122 Union Oil Company of California, et al. v Tesoro Alaska Company, Tesoro Alaska Company v Union Oil Co of CA, Unocal Pipeline Co & Unocal Co
- -
-
-
Friday, July 19, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6797 -S14416 Olga H. Villars v Richard J. Villars305 P.3d 321
- -6798 -S14360 Megan Patrick v Municipality of Anchorage Transportation Comm.305 P.3d 292
- -6801 -S14458 Nautilus Marine Enterprises, Inc. v Exxon Mobil Corporation and Exxon Shipping Company305 P.3d 309
- -6799 -S14926 Brian D. Petrilla v Roxana Petrilla305 P.3d 302
- -
-
-
Friday, July 12, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6796 -S14484 Andrea Blaufuss f/k/a Andrea Ball v Melvin Ball305 P.3d 281
- -6795 -S13793, S14015 Keven Windel and Marlene Windel v Mat-Su Title Insurance Agency, Inc., et al., Keven Windel and Marlene Windel v Thomas Carnahan305 P.3d 264
- -
-
-
Friday, July 5, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6793 -S14651 Aaron S. Rosenblum v Angelica M. Perales303 P.3d 500
- -6794 -S14640 David J. McCarter, Jr. v Deborah A. McCarter n/k/a Deborah A. Valdez303 P.3d 509
- -
-
-
Friday, June 28, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6792 -S14338 Tommie Patterson v Infinity Insurance Company303 P.3d 493
- -6790 -S14892, S14894 C.C. (Father) v State of Alaska, OCS, T.C. (Mother) v State of Alaska, OCS303 P.3d 465
- -6789 -S14688 Patricia Beals v Mark Beals303 P.3d 453
- -6791 -S14083, S13944, S14093 University of Alaska v Yauna Taylor, Calvin Grimmett v University of Alaska Anchorage, University of Alaska Anchorage v Calvin Grimmett303 P.3d 482
- -
-
-
Friday, June 21, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6788 -S14562 Native Village of Tununak v State of Alaska, OCS303 P.3d 431
- -
-
-
Friday, June 14, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6787 -S14508 Gregory C. Martin, Jr. v Melody C. Martin303 P.3d 421
- -
-
-
Friday, June 7, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6786 -S14673 Jean Schultz and Dennis P. Hutchinson, Jr. Trust v Wells Fargo Bank, N.A.301 P.3d 1237
- -
-
-
Friday, May 31, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6783 -S14558 Ronny M. v. Nanette H.303 P.3d 392
- -6784 -S13884 Calais Company, Inc. v Deborah Kyzer Ivy, individually and as a et al.303 P.3d 410
- -6785 -S13792, S13772 Patricia Campbell v Karen Dearlove, Karen Dearlove v Patricia Campbell301 P.3d 1230
- -
-
-
Friday, May 17, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6782 -S14211 Susan Taylor v Wells Fargo Home Mortgage & Routh Crabtree, P.C.301 P.3d 182
- -
-
-
Friday, May 10, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6781 -S14460 Eugene F. Bottcher v State of Alaska300 P.3d 528
- -
-
-
Friday, May 3, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6780 -S14621, S14622 Municipality of Anchorage & NovaPro Risk Solutions v John E. Adamson, Calli E. Olsen v City and Borough of Juneau301 P3d 569
- -6777 -S14535 Clinton DesJarlais v State of Alaska, Office of the Lieutenant Governor300 P3d 900
- -6778 -S14702 Melanie Yvette O'Neal v Melvin Campbell300 P.3d 15
- -6779 -S14060 Suzanne C. Dimeff et al. v The Estate of Robert Merle Cowan et al.300 P.3d 1
- -
-
-
Friday, April 26, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6776 -S14378, S14407 Lori McDonnell, et al. v State Farm Mutual Automobile Insurance Company, State Farm Mutual Automobile Insurance Company v Lori McDonnell, et al.299 P.3d 715
- -6775 -S14345 Kent Bearden v State Farm Fire and Casualty Company299 P.3d 705
- -
-
-
Friday, April 12, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6774 -S14406 James A. Madonna v Tamarack Air, Ltd.298 P.3d 875
- -6773 -S14177 Thomas Titus v State of Alaska, Dept. of Administration, DMV305 P.3d 1271
- -
-
-
Friday, April 5, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6772 -S14403 Richard Wagner v Felicia Wagner299 P.3d 170
- -
-
-
Friday, March 29, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6770 -S14664 Plumbers & Pipefitters, Local 367 v Municipality of Anchorage298 P.3d 195
- -6767 -S14114 David McCarrey and Donna McCarrey v Ronald Kaylor and Jean K. Kaylor301 P3d 559
- -6771 -S14313 Dixie D. Dixon v Joshua Paul Blackwell298 P.3d 185
- -6769 -S14216 Daniel S. Sullivan, Commissioner, SOA, DNR v REDOIL, Gwich'in Steering Committee, et al.311 P.3d 625
- -6768 -S14561 Camilla Hussein-Scott v Jerry Scott298 P.3d 179
- -6766 -S14687 Brenda J. Pruitt v Providence Extended Care and Sedgwick CMS, Inc.297 P.3d 891
- -
-
-
Friday, March 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6760 -S14594 Kelley K. Griffin v Michael A. Weber299 P.3d 701
- -6762 -S14356 Clinton Swaney v Aimee Granger297 P.3d 132
- -6763 -S14661 Ana F. Sosa' de Rosario v Chenega Lodging dba Hotel Clarion et al.297 P.3d 139
- -6764 -S14454 Sidney R Hertz v John Macomber, et al.297 P.3d 150
- -6761 -S14181 Ronald A. Brooks v Timothy Hollaar297 P.3d 125
- -6765 -S14041 William Mills, Karen Mills, Annette McLaughlin &CW v Jefferson Hankla and the City of Hoonah297 P.3d 158
- -
-
-
Friday, March 15, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6758 -S14486 State of Alaska v John Doe I and John Doe II297 P.3d 885
- -6759 -S14202 Daniel L. Burke and Luisa E. Burke v Nesavou Maka, Fungani A. Maka and Alberta F. Maka296 P.3d 976
- -
-
-
Friday, March 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6756 -S13693, S13713 Mary Hill dba Wild Rose Gardens Assisted Living v Linda Giani, Linda Giani v Mary Hill dba Wild Rose Gardens Assisted Living296 P.3d 14
- -6755 -S14299 American Marine Corp d/b/a American Hyperbaric Ctr v Crystal Sholin, et al.295 P.3d 924
- -6757 -S14180 Ronald V. Weilbacher v Floyd Ring, Sandra Ring, Wade Henry and Jane Henry
- -6754 -S14457 ARCTEC Services, an ASRC Company, and ASRC Svc Ctr v Gayle Cummings295 P.3d 916
- -
-
-
Friday, February 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6753 -S14690 In the Reinstatement Matter Involving: v Jon E. Wiederholt295 P.3d 396
- -6750 -S14077 Estate of Simone Young Kim, et. al. v Ray Coxe d/b/a Rayco Sales, et. al.295 P.3d 380
- -
-
-
Friday, February 15, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6750 -S14321 Simone K. Greenway v Larry D. Heathcott294 P.3d 1056
- -6751 -S14513 Fredrick G Williams v Ketchikan Gateway Borough295 P.3d 374
- -
-
-
Friday, February 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6749 -S14343 David Hurn on behalf of Minor Children DH and PH v Simone Greenway293 P.3d 480
- -
-
-
Friday, February 1, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6748 -S13834 Elizabeth Heynen v Julene Fairbanks293 P.3d 470
- -6747 -S13790 Leisnoi, Inc. v Merdes & Merdes, P.C.307 P.3d 879
- -
-
-
Friday, January 25, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6746 -S14089 Caroline Williams, Estate of Robert Shapsnikoff, v Geico Casualty Company d/b/a Geico
- -
-
-
Friday, January 18, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6744 -S14318 Mary Licht, as personal representative, et al. v Thomas Irwin, Commissioner, DNR, SOA
- -6743 -S14692 In the Matter Regarding Dennis Cummings v Judge of the District Court, 4th Judicial District292 P.3d 297
- -6745 -S14075 Ahtna, Inc. v State of Alaska, DOT&PF296 P.3d 3
- -
-
-
Wednesday, January 9, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6742 -S14663 T.G. (Mother) v State of Alaska, OCS291 P.3d 957
- -
-
-
Friday, December 28, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6740 -S14436 Mallory D. v. Malcolm D.290 P.3d 1194
- -6741 -S14721 In Re 2011 Redistricting Cases v 294 P.3d 1032
- -
-
-
Friday, December 21, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6739 -S14614 S.B. (Father) v State of Alaska, OCS290 P.3d 421
- -6738 -S14215 Cedric Cutler v Kodiak Island Borough290 P.3d 415
- -6737 -S13823, S13943 Robert W Rude & New Alliance for Future of CIRI v Cook Inlet Region, Inc. [CIRI], Robert Rude & New Alliance for the Future of CIRI, v Cook Inlet Region, Inc. [CIRI]294 P.3d 76
- -
-
-
Friday, December 14, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6733 -S14367 Tierice Coleman v Elka McCullough290 P.3d 413
- -6734 -S14427 LDG, Inc, and Estate of Larry Gjovig v Arthur S. Robinson290 P.3d 215
- -6735 -S13936 Byran Perotti v Corrections Corporation of America290 P.3d 403
- -
-
-
Monday, December 10, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6736 -S14565 H.B. (Mother) v State of Alaska, OCS289 P.3d 924
- -
-
-
Friday, December 7, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6732 -S14184 Christopher Lee Price v International Pacific Halibut Commission289 P.3d 914
- -6728 -S14162, S14142 Michael J. Cooper and Central Plumbing & Heating v Samuel L. Thompson, Samuel L. Thompson v Michael J. Cooper and Central Plumbing and Heating290 P.3d 393
- -6729 -S14126 Tawnya Osbakken, Peter Barnes and Tamara Black v Iliamna Services, IS, Inc., Alliance Svcs, et al.289 P.3d 894
- -6730 -S14693 J.R. (Mother) v State of Alaska, OCS289 P.3d 896
- -6731 -S14079, S14099 Alaska Fish and Wildlife Conservation et al. v State of Alaska, Alaska Board of Fisheries, et al., State of Alaska, Alaska Board of Fisheries, et al. v Alaska Fish and Wildlife Conservation Fund, et al.289 P.3d 903
- -
-
-
Friday, November 30, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6727 -S14234 Victoria E. Cox FKA Victoria E. Floreske v John M. Floreske, Jr.288 P.3d 1289
- -
-
-
Friday, November 23, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6726 -S14253 Robert Caywood, Paula Caywood, et al. v State of Alaska, Department of Natural Resources288 P.3d 745
- -6725 -S14021 Alyeska Pipeline Service Company, et al. v SOA, Michael L Menge, Comm of Natural Resources288 P.3d 736
- -
-
-
Friday, November 16, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6722 -S14422 Helen S.K. v. Samuel M.K.288 P.3d 463
- -6723 -S14620 Siegfried Pedersen v Daniel Blythe and Bobbie Luxford292 P3d 182
- -6721 -S14058, S14042 State of Alaska, Department of Public Safety v Michael E. Boles, James D. Ward v State of Alaska, Department of Public Safety288 P.3d 94
- -6724 -S13788 Opal Dan v Desiree Dan and Freda Dan288 P.3d 480
- -
-
-
Friday, November 9, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6720 -S14297, S13968 Ahtna Tene Nene' v State of Alaska, Department of Fish & Game, et al., Ahtna Tene Nene' v State of Alaska, Department of Fish & Game, et al.288 P.3d 452
- -
-
-
Friday, November 2, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6719 -S14043 Ralph Kermit Winterrowd 2nd v State of Alaska and John Does 1-10288 P.3d 446
- -
-
-
Friday, October 19, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6718 -S14317 Diana P. Albrecht v Alaska Trustee, LLC286 P.3d 1059
- -6717 -S14053 Anthony E. Reed v Stephanie Parrish286 P.3d 1054
- -
-
-
Friday, October 12, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6715 -S13729 PowerCorp Alaska, LLC, and Kwig Power Company v Alaska Energy Authority, Ron Miller and Kris et al290 P.3d 1173
- -6716 -S13861 Andree McLeod v Sean Parnell and Office of the Governor of the SOA286 P.3d 509
- -
-
-
Friday, October 5, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6714 -S14238 Stephen J. Aldrich, Jr. v Kristin K. Aldrich286 P.3d 504
- -
-
-
Friday, September 28, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6712 -S14362 Brian Ross, minors Andrew, Matthew and Emily Ross v State of Alaska, Department of Revenue292 P.3d 906
- -6711 -S13909, S13530 Gold Dust Mines, Inc., Delmer Ackels & Gail Ackels v Little Squaw Gold Mining Company, Gold Dust Mines, Inc., Delmer Ackels & Gail Ackels v Little Squaw Gold Mining Company, Inc.299 P.3d 148
- -
-
-
Friday, September 14, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6709 -S14315 Mitch McGraw v Samantha Cox285 P.3d 276
- -6708 -S14473 Chad R. Lewis v Jessica E. Lewis285 P.3d 273
- -6710 -S14178 Mark McKitrick v SOA, Public Employees' Retirement System284 P.3d 832
- -6707 -S14196 Timothy Kuretich, Sr. v Alaska Trustee, LLC, Stephen Routh & PHH Mortgage287 P.3d 87
- -
-
-
Friday, September 7, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6705 -S14474 Erich Patrawke v Tanya Liebes286 P.3d 268
- -6706 -S13990 Jack C. v. Tally C.284 P.3d 13
- -6704 -S13423, S13433 Carolyn Vieve Day v Charles T. Williams, Charles T. Williams v Carolyn Vieve Day285 P.3d 256
- -
-
-
Friday, August 31, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6703 -S14129, S14110 Loren J. Larson, Jr. v Craig Turnbull, Loren J. Larson Jr. v State of Alaska, Department of Corrections284 P.3d 1
- -
-
-
Friday, August 10, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6702 -S13877 Dennis Davison v State of Alaska282 P.3d 1262
- -
-
-
Friday, July 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6697 -S13994 Offshore Systems - Kenai, an Alaska partnership v State of Alaska, Department of Transportation etal282 P.3d 348
- -6698 -S14277 Jeffrey E. Gorton v Stephanie J. Mann281 P.3d 81
- -6701 -S14419 J.D.E. v Alaska Psychiatric Institute281 P.3d 84
- -6699 -S14078, S14098 Sea Hawk Seafoods, Inc., an Alaskan corporation v City of Valdez, a municipal corporation, City of Valdez, a municipal corporation v Sea Hawk Seafoods, Inc., an Alaskan corp.282 P.3d 359
- -6700 -S14091 Cindy Lentine v State of Alaska282 P.3d 369
- -
-
-
Friday, July 20, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6693 -S14233 Russell Peterson, Jr. v State of Alaska280 P.3d 559
- -6694 -S14294 Esther J. Runstrom v Alaska Native Medical Center, et al.280 P.3d 567
- -6690 -S14155 Holiday Alaska, Inc. v State of Alaska, Division of Corporations280 P.3d 537
- -6696 -S14074 State of Alaska, Dept of Health & Social Services v North Star Hospital280 P.3d 575
- -6691 -S14018 Friends of Willow Lake, Inc. v State of Alaska, Dept. of Transportation, et al.280 P.3d 542
- -6692 -S14056 Georgianne Shears v Dee Ann Myers, et. al.280 P.3d 552
- -
-
-
Friday, June 29, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6687 -S14232 William M. Toliver II v Alaska State Commission for Human Rights279 P.3d 619
- -6686 -S13904 Richard J. Tracy and Durena K. Tracy v State of Alaska, Dept of Soc Serv, OCS279 P.3d 613
- -6685 -S13584, S13593 Airline Support, Inc. v ASM Capital II, L.P., ASM Capital II, LP v Airline Support, Inc.279 P.3d 599
- -6688 -S13227, S13247 Keith Jones v Bowie Industries, Inc. and Todd Christianson et al, Bowie Industries, Inc. and Todd Christianson v Keith Jones282 P.3d 316
- -
-
-
Friday, June 22, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6683 -S14200 E. Kate Tea, guardian ad litem, on behalf of: A.T. v Minors Under the Age of Eighteen278 P.3d 1262
- -6684 -S13350 Melinda and Craig Schweitzer v Salamatof Air Park Subdivision Owners, Inc, et al.278 P.3d 1267
- -
-
-
Friday, June 15, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6680 -S14377 R.S. (Father) v State of Alaska, Office of Children's Services278 P.3d 886
- -6682 -S13787 In the Matter of the Guardianship of: v Mirth Kvamme278 P.3d 876
- -6681 -S13501 Izaz Khan v State of Alaska278 P.3d 893
- -
-
-
Friday, June 8, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6679 -S14323 Michael Pestrikoff, Anna Rae Bent, Lisa D Bent v Estate of Dorothy Mae Morrison278 P.3d 281
- -
-
-
Friday, June 1, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6678 -S14008 Michael Berry v April Berry277 P.3d 771
- -6677 -S14094 Richard Jude Villars v Kathleen Estelle Villars277 P.3d 763
- -
-
-
Friday, May 25, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6676 -S13566 Mary Jaworski v Estates of Andrew Horwath et al, and Sue Street277 P.3d 753
- -
-
-
Friday, May 18, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6675 -S14160 J.L. (Father) v State of Alaska, DHSS, OCS276 P.3d 457
- -6674 -S13888 State of Alaska, Second Injury Fund v Tongass Business Center, Commerce & Industry Ins.276 P.3d 453
- -6673 -S13901, S13952 State of Alaska, Board of Certified Real Estate v Kim Wold, Kim Wold v SOA, Board of Certified Real Estate Appraisers278 P.3d 266
- -6672 -S13866 Sue L. Grundberg v Alaska State Commission for Human Rights276 P.3d 443
- -
-
-
Tuesday, May 8, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6671 -S14247 P.E. (Grandmother) v State of Alaska, OCS276 P.3d 422
- -
-
-
Friday, April 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6668 -S14222 Sherman C. Smith v State of Alaska, and Sean Parnell, et al.282 P.3d 300
- -6669 -S14183 Stephanie W. v. Martin V.274 P.3d 1185
- -6670 -S13482 Estate of Shawn Martin Mickelsen v North-Wend Foods, Inc., et al.274 P.3d 1193
- -
-
-
Friday, April 20, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6665 -S14214 Sven K. Rofkar v State of Alaska273 P.3d 1140
- -6666 -S14332 Heather W. v. Rudy R.274 P.3d 478
- -6667 -S13394 Sitkans for Responsible Government et al. v City and Borough of Sitka et al.274 P.3d 486
- -
-
-
Friday, April 13, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6663 -S13915 Bobbie Ann Hunter v Shaun Conwell276 P.3d 413
- -6664 -S14106 James B. Gottstein v Brian W. Kraft and Serena Kraft, et. al.274 P.3d 469
- -
-
-
Friday, April 6, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6662 -S14014 In the Disciplinary Matter Involving v Wevley W. Shea273 P.3d 612
- -6661 -S13100 Daniel Nelson v State of Alaska273 P.3d 608
- -6660 -S13800 In the Matter of the Hospitalization of J.K. v 273 P.3d 594
- -6659 -S13883, S13596 Kenai Peninsula Borough v Alliance of Concerned Taxpayers, Inc., Alliance of Concerned Taxpayers, Inc. v Kenai Peninsula Borough273 P.3d 1128
- -6658 -S13594 Alliance of Concerned Taxpayers, Inc. v Kenai Peninsula Borough273 P.3d 1123
- -
-
-
Friday, March 30, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6657 -S14073 Robert R. Borgen v A & M Motors, Inc., Mike Morelli, et al.273 P.3d 575
- -
-
-
Wednesday, March 28, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1414 -S14063 Charles E. Nash v Harold B. Dreyer, Gunderboom, Inc. and Dejon Corp.
- -
-
-
Friday, March 9, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6656 -S14149 Irene M. Bedard Wilson v Dennis E. Wilson, Jr.271 P.3d 1098
- -
-
-
Friday, March 2, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6653 -S13858 Ethel B. Kelly v Municipality of Anchorage270 P.3d 801
- -6654 -S13698 In the Matter of the Protective v Proceedings of: Tammy J.270 P.3d 805
- -6655 -S13656 State of Alaska, Department of Corrections v Paul Heisey271 P.3d 1082
- -
-
-
Friday, February 17, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6652 -S13608 Lawrence Trudell v Brent and Debra Hibbert, et al.272 P.3d 331
- -
-
-
Friday, February 10, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6651 -S13525 Fairbanks North Star Borough v Gold Country Estates Preservation Group, et al.270 P.3d 787
- -6650 -S13667, S13478 Pacific Diversified Investments, Inc., et al. v Alaska Interstate Construction, LLC, et al., Alaska Interstate Construction, et al. v Pacific Diversified Investments, Inc., et al.279 P.3d 1156
- -6651 -S13475 Gold Country Estates Preservation Group, et al. v Fairbanks North Star Borough270 P.3d 787
- -
-
-
Friday, January 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6649 -S13468 Chana Boyko v Anchorage School District268 P.3d 1097
- -6648 -S13371 Diane Roberson v Wayne Manning & Dennis Wilson268 P.3d 1090
- -
-
-
Friday, January 20, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6647 -S14208, S13874 D.S. (Father) v State of Alaska, Office of Children's Services, D.S. (Father) v State of Alaska, Office of Children's Services270 P.3d 767
- -6637 -S13922, S13832 Integon Indemnity Corporation and GMAC Insurance v Jacob Ennen, Craig Allen and Allen Law Group, Jacob Ennen v Integon Indemnity Corp. GMAC Insurance, et al.268 P.3d 277
- -6645 -S13818 State of Alaska, CFEC v Donald H. Carlson, et al.270 P.3d 755
- -6639 -S13949 Tom Oels and John Does 1-10 v Anchorage Police Department Employees Assoc et al.279 P.3d 589
- -6644 -S14086 Helen Barton v North Slope Borough School District268 P.3d 346
- -6646 -S14030 Eleanor Oakes v David and Sine Holly268 P.3d 1084
- -6640 -S14035, S14055 Stephanie F. v George C., George C. v Stephanie F.270 P.3d 737
- -6641 -S14036 John Weinberger v Patrice Weinmeister268 P.3d 305
- -6638 -S13681 State of Alaska Dept. of Natural Resources, et al. v Nondalton Tribal Council, et al.268 P.3d 293
- -6643 -S13031 Teresa S. McLaren v Darren G. McLaren268 P.3d 323
- -6642 -S13230 William Kiernan and Christine Pfeiffer, et al. v Willie Creech, Justin Creech, et al.268 P.3d 312
- -
-
-
Friday, January 13, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6636 -S14310 John Doe v State of Alaska, Office of Children's Services272 P.3d 1014
- -6635 -S13509 State of Alaska v Robert D. Gibson, III267 P.3d 645
- -6633 -S13768 James M. Grace v Laurel J. Peterson, P.C. & Kathleen Grace269 P.3d 663
- -6632 -S14049, S14072 M.S. (Mother) v State of Alaska, OCS, W.S. (Father) v State of Alaska, DHSS, OCS268 P.3d 1066
- -6631 -S13955, S13965 HP Limited Partnership v Kenai River Air Park, LLC, et al., Kenai River Airpark, LLC, et al. v HP Limited Partnership270 P.3d 719
- -6634 -S13838 In the Matter of the Adoption of: v X.J.K., A Minor under 18 years of age268 P.3d 274
- -
-
-
Friday, December 23, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6629 -S13887 Shirley L. Shea v State of Alaska, Department of Administration267 P.3d 624
- -6630 -S13775 Ryan Nelson v Municipality of Anchorage, et al.267 P.3d 636
- -
-
-
Friday, December 9, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6627 -S14009, S14010 Jim L. Widmyer v State of AK, Commercial Fisheries Entry Commission, Jim L. Widmyer v State of AK, Commercial Fisheries Entry Commission267 P.3d 1169
- -6626 -S13972 Michael McCrary v Ivanof Bay Village & Edgar Shangin265 P.3d 337
- -6625 -S14220 Rebecca Sheffield v Michael Sheffield265 P.3d 332
- -6623 -S13542, S13561 M.P. & R.P. On behalf of their minor son, M.P. v Anchorage School District, Anchorage School District v M.P. and R.P., on behalf of their minor son M.P.265 P.3d 308
- -6624 -S13552, S13582 Samuel Sengul v CMS Franklin Inc and Robert Manus, CMS Franklin Inc. and Robert Manus v Samuel Sengul265 P.3d 320
- -
-
-
Friday, December 2, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6622 -S14193 P.J. (Father) v State of Alaska, OCS264 P.3d 842
- -6621 -S14150 S.G. (Mother) v State of Alaska264 P.3d 831
- -6620 -S13685 In the Matter of Alaska Network v on Domestic Violence and Sexual Assault264 P.3d 835
- -6619 -S13822 Leon Burts v Ann Burts266 P.3d 337
- -
-
-
Thursday, November 10, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6618 -S13340 Dena' Nena' Henash d/b/a Tanana Chiefs Conference v Fairbanks North Star Borough265 P.3d 302
- -
-
-
Friday, November 4, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6617 -S12989, S12630 Golden Valley Electric Association, Inc. v ASRC Energy Services Power and Communications, LLC, ASRC Energy Services Power and Communications, LLC v Golden Valley Electric Association, Inc.267 P.3d 1151
- -
-
-
Friday, October 28, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6614 -S13540 Kevin O'Connell v Anthony Will and Paulette Will263 P.3d 41
- -6615 -S13928 Justin L. Nelson v Erica R. Nelson263 P.3d 49
- -6613 -S13839 Renaissance Alaska, LLC. v Rutter and Wilbanks Corporation263 P.3d 35
- -6616 -S13885 Handle Construction Company, Inc v Norcon, Inc264 P.3d 367
- -
-
-
Friday, October 21, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6612 -S13903 Kalindi McAlpine v Shaun Pacarro262 P.3d 622
- -6610 -S13742 Calvin L. McGahuey v Whitestone Logging, Inc., & Alaska Timber Ins Exc262 P.3d 613
- -6611 -S13680 Gregory T. Erkins v Alaska Trustee, LLC, Bank of New York Trust et al265 P.3d 292
- -
-
-
Friday, October 14, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6608 -S13379 Sharon L. Stevens v Ronald A. Stevens265 P.3d 279
- -6608 -S13420 Ronald A. Stevens v Sharon L. Stevens265 P.3d 279
- -6609 -S13781 Uwe Kalenka, as P.R. Of the Estate of Eric Kalenka v Infinity Insurance Companies262 P.3d 602
- -
-
-
Friday, October 7, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6606 -S13708 Alaskan Crude Corporation & James W. White v State of Alaska261 P.3d 412
- -6605 -S13528 Alaska Exchange Carriers Association, Inc. v Regulatory Commission of Alaska et al.262 P.3d 204
- -6607 -S13654 Lot 04B&5C Block 83 Townsite v Fairbanks North Star Borough261 P.3d 422
- -
-
-
Friday, September 23, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6602 -S13595 Frank Olson v State of Alaska260 P.3d 1056
- -6604 -S13913 John Pfeifer, on behalf of Sara Pfeifer v Alaska Dept. Of Health & Social Services et al.260 P.3d 1072
- -6603 -S13894 Bradley Shaffer v Kenneth Bellows, et. al.260 P.3d 1064
- -
-
-
Friday, September 16, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6600 -S13733 Leroy T. Adams v State of Alaska261 P.3d 758
- -6601 -S13624, S13633 J.P. and L.P. on behalf of their minor son, P.P. v Anchorage School District, Anchorage School District v J.P. and L.P. on behalf of their minor son, P.P.260 P.3d 285
- -
-
-
Friday, September 2, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6599 -S13496 Branwen Collier f/k/a Mendel-Gleason v William Aubrey Harris261 P.3d 397
- -6598 -S13916 Joseph James v State of Alaska, Department of Corrections260 P.3d 1046
- -
-
-
Friday, August 26, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6595 -S13993 William P. v. Taunya P.258 P.3d 812
- -6597 -S13855, S13645 Larry Houle, et al and Brian Noel, et al v State Farm Mutual Automobile Insurance Company, State Farm Mutual Automobile Insurance Co. v Larry Houle, et al and Brian Noel, et al258 P.3d 833
- -6592 -S13856 In The Disciplinary Matter Involving v John M. Rice260 P.3d 1020
- -6594 -S13375 Allen W. Heustess v Bonnie Kelley-Heustess259 P.3d 462
- -6596 -S13425 3-D & Co. v Tew's Excavating, Inc.258 P.3d 819
- -6593 -S12878 Robert J. Henrichs, Derenty Tabios and Robert Burk v Chugach Alaska Corporation [CAC]260 P.3d 1036
- -
-
-
Friday, August 19, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6589 -S13569 Evelynn Foster, Pers. Rep. of the Est. of Ann Davi v Professional Guardian Services Corporation258 P.3d 102
- -6591 -S13620 Melvin B. Gillis v Aleutians East Borough & AKDNR258 P.3d 118
- -6590 -S13942 Zebuleon Whitney v State Farm Mutual Automobile Insurance Company258 P.3d 113
- -
-
-
Friday, August 12, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6587 -S13650 Michael P. Rego v Joanna M. Rego259 P.3d 447
- -6588 -S13436 Robert Stevens d/b/a Fish Heads Bar & Grill v Alcoholic Beverage Control Board & Mat-Su Borough257 P.3d 1154
- -
-
-
Friday, July 29, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6584 -S13472 Shabd-Sangeet Khalsa v Lars Chose, Tamasine Drisdale, Gordon Stein, et al261 P.3d 367
- -6585 -S13405 In the Matter of the Application of Michael P Nash v 257 P.3d 130
- -6583 -S13439 Byron M. Kalmakoff v State of Alaska257 P.3d 108
- -6586 -S13782 State of Alaska v Public Safety Employees Association257 P.3d 151
- -
-
-
Friday, July 22, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6581 -S14012 R.H. (Father) v State of Alaska, OCS255 P.3d 1003
- -6579 -S13426 Charles Gary Miller v Handle Construction Company255 P.3d 984
- -6580 -S13537 Sandra Russell on behalf of J.N., a Minor Child v Corporal Lee Virg-in & City of Kotzebue258 P.3d 795
- -6582 -S13586 Ian and Peggy Harrod v State of Alaska, Department of Revenue255 P.3d 991
- -
-
-
Friday, July 15, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6577 -S13710 Yvan Safar v Wells Fargo Bank, N.A.254 P.3d 1112
- -6578 -S13167 Thomas E. Price Jr. v Mike Eastham, et al.254 P.3d 1121
- -
-
-
Friday, July 8, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6576 -S14022 C.J. (Mother) v State of Alaska, DHSS, OCS254 P.3d 1095
- -
-
-
Friday, July 1, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -6574 -S13748 Fraternal Order of Eagles, et al. v City and Borough of Juneau254 P.3d 348
- -6575 -S13796 Paul Smith v State of Alaska, Department of Transportation253 P.3d 1233
- -6573 -S13699 Karen Crowley v State of Alaska, DHSS, Office of Children's Svcs253 P.3d 1226
- -6572 -S13524 David F. Stone v State of Alaska255 P.3d 979
- -
-
-
Friday, June 24, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6570 -S13640 Kenneth Monzulla v Voorhees Concrete Cutting, Employer et al.254 P.3d 341
- -
-
- - - -
-
-
- - - - - - - - - - - - - - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaska_subexample_1.html b/tests/examples/opinions/united_states/alaska_subexample_1.html new file mode 100644 index 000000000..05285aeaa --- /dev/null +++ b/tests/examples/opinions/united_states/alaska_subexample_1.html @@ -0,0 +1,345 @@ + + + + + Case Summary + + + + + + +
+ +
+ +
+
+ +
+ + + +
+
+ + + +
+
+
+

Case Summary

+
+ + Notify me of oral + arguments or decisions +
+ +
+
+
+ + S17884   Reeves, et al. v. Godspeed Properties, et al. [Cross Appeal: S17904] + S17904 + Closed +
+
+
+
+ + +
+
+ +
+
Full Case Caption:
+
John Reeves and Fairbanks Gold Co., LLC v. Godspeed Properties, LLC and Gold Dredge 8, + LLC
+
Contact Case Manager:
+
907-264-0630 (7630), Email +
+
+
+
+ +
+
Case Type:
+
204 Appeal
+
Date Filed:
+
+ 9/11/2020 +
+
+
+
+
+
+

Oral Argument

+
+ +
+
Status:
+
Held
+
Date/Time:
+
12/14/2021 8:30:00 AM
+
Min/Side:
+
20
+
Location:
+
101 Lacey Street Room #502
+
Video:
+
+ Video + Link +
+
+
+
+
+
+
+
+

Note

+
+
+
S-17884/S-17904: 20 minutes per side for total of 40 minutes to hear both + cases.
+
+
+
+
+
+
+
+
Opinions
+ + + + + + + + + + + + + + + + + + + + + + +
Number TypeDecisionDateCitationDocDocument
7617OpinionAffirm9/16/2022517 P.3d 31 (2022) + + +
+
+
+
+
+
Lower Court or Agency Information
+ + + + + + + + + + + + + + + + + + + + +
Case NumberJudgment DateDistribution DateLower Court or AgencyJudge
4FA-12-02133CI7/3/20207/6/2020SuperiorJudge Randy M. Olsen, Judge Paul R. Lyle
+ Details for the Trial Court Case are located in the Courtview Website. To look up + information on a + Trial Court Case copy the above Lower Court Case Number, click CourtView and paste into + Case Number + field and click Search. +
+
+
+
+
Related Appellate Cases
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Case NumberNameCase TypeRelationshipStatus
S15021 + John Reeves & Fairbanks Gold Co, LLC v Godspeed Properties, LLC and Gold + Dredge 8402 Petition for ReviewSame Trial Court NumberClosed
S15461 + John Reeves & Fairbanks Gold Co., LLC v Godspeed Properties & Gold + Dredge 8204 AppealSame Trial Court NumberClosed
S15482 + Godspeed Properties, LLC v J. Reeves, et al.204 AppealSame Trial Court NumberClosed
S17251 + John Reeves and Fairbanks Gold Company LLC v Godspeed Properties LLC402 Petition for ReviewSame Trial Court NumberClosed
S17904 + Godspeed Properties, LLC and Gold Dredge 8, LLC v. John Reeves and Fairbanks + Gold Co., LLC 204 AppealCrossClosed
+
+
+ +
+
+ + +
+ + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaskactapp_example.compare.json b/tests/examples/opinions/united_states/alaskactapp_example.compare.json index e1051efcc..49d60751b 100644 --- a/tests/examples/opinions/united_states/alaskactapp_example.compare.json +++ b/tests/examples/opinions/united_states/alaskactapp_example.compare.json @@ -1,2752 +1,103 @@ [ { - "case_dates": "2019-10-17", - "case_names": "Joshua W. Cole v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2661&caseNumber=A12442&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12442", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-17", - "case_names": "Jason D. Ray v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2660&caseNumber=A12135&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12135", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-11", - "case_names": "Norman McDaniels v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2658&caseNumber=A12614&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12614", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-11", - "case_names": "Louie C. Dulier Sr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2659&caseNumber=A12557&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12557", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-10-04", - "case_names": "Richard A. Kinmon v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2657&caseNumber=A12645&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12645", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "State of Alaska v. Yoder Austin Blalock, Yoder Austin Blalock v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2656&caseNumber=A12301%2C%20A12282&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12301, A12282", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-09-27", - "case_names": "Mae Lu Good v. Municipality of Anchorage", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2655&caseNumber=A12904&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12904", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-30", - "case_names": "Celesty Noel Farmer v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2654&caseNumber=A12097&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12097", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-23", - "case_names": "Gareth R. Demoski v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2652&caseNumber=A12620&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12620", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-08-23", - "case_names": "Earl Dean Robbins v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2653&caseNumber=A12494&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12494", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-26", - "case_names": "Clayton Phillip Allison v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2651&caseNumber=A12382&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12382", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-07-19", - "case_names": "Marquinn Jones-Nelson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2650&caseNumber=A11966&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11966", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-28", - "case_names": "Brian Hall v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2649&caseNumber=A12719&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12719", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-28", - "case_names": "Adam Keith Kasgnoc Sr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2648&caseNumber=A12091&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12091", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-07", - "case_names": "Mark Daniel Torgerson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2647&caseNumber=A13416&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13416", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-06-07", - "case_names": "Lanolan Anderson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2646&caseNumber=A12294&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12294", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-24", - "case_names": "Dwight Samuel O'Connor v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2645&caseNumber=A12328&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12328", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-17", - "case_names": "Adam Charles Dere v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2644&caseNumber=A12338&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12338", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-05-03", - "case_names": "State of Alaska v. Thomas A. Mayfield", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2643&caseNumber=A12534&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12534", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-04-05", - "case_names": "Wendy Christine Williams v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2642&caseNumber=A12244&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12244", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-15", - "case_names": "State of Alaska v. Jason Lee Carlson", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2641&caseNumber=A11636&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11636", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-01", - "case_names": "Teddy Smith v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2640&caseNumber=A12309&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12309", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-01", - "case_names": "Jerry Gene Inga v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2638&caseNumber=A12067&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12067", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-03-01", - "case_names": "Jackie Russell Adams v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2639&caseNumber=A11450&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11450", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-22", - "case_names": "Stephen Alvarado v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2636&caseNumber=A12105&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12105", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-22", - "case_names": "Stacey Allen Graham v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2637&caseNumber=A12222&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12222", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-15", - "case_names": "Caroline K. Swartz v. Municipality of Anchorage", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2635&caseNumber=A12810&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12810", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-08", - "case_names": "State of Alaska v. Jeremy D. Simile", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2634&caseNumber=A13315&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13315", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-01", - "case_names": "Wilson William Fox v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2633&caseNumber=A12640&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12640", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-02-01", - "case_names": "Erin A. Pohland v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2632&caseNumber=A12443&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12443", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2019-01-11", - "case_names": "Eric Penetac v. Municipality of Anchorage", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2631&caseNumber=A12804&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12804", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-28", - "case_names": "James A. Charles v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2630&caseNumber=A12119&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12119", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-14", - "case_names": "Jennifer Anderson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2629&caseNumber=A12600&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12600", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-14", - "case_names": "James Patrick Tanner v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2628&caseNumber=A12617&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12617", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-12-14", - "case_names": "Brant Josef Natori Marshall v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2627&caseNumber=A12131&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12131", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-30", - "case_names": "Vicky Love v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2626&caseNumber=A11949&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11949", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-23", - "case_names": "R.C. (Minor) v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2625&caseNumber=A12323&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12323", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-16", - "case_names": "Newton Patric Lambert v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2623&caseNumber=A11699&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11699", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-09", - "case_names": "Thomas Leonard Massey, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2622&caseNumber=A12271&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12271", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-11-09", - "case_names": "Jesus Alberto Cardenas v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2621&caseNumber=A12470&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12470", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-19", - "case_names": "Michael Saofaga, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2620&caseNumber=A13191&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13191", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-10-19", - "case_names": "David William Bragg v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2619&caseNumber=A12342&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12342", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-31", - "case_names": "Latrell Donel Wynne v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2615&caseNumber=A11540&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11540", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-17", - "case_names": "Municipality of Anchorage v. Wayne Edward Beezley", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2614&caseNumber=A12850&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12850", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-08-17", - "case_names": "Mikos Simmons v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2613&caseNumber=A12147&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12147", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-22", - "case_names": "Robert D. Kowalski v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2606&caseNumber=A12061&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12061", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-22", - "case_names": "Jeffrey L. Brown v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2605&caseNumber=A11666&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11666", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-01", - "case_names": "Jeromy Francis Hurlburt v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2601&caseNumber=A11999&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11999", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-06-01", - "case_names": "Eric Sherron McGuire v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2603&caseNumber=A11268&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11268", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-18", - "case_names": "Falealo Manuele Pulusila v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2599&caseNumber=A12783&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12783", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-18", - "case_names": "Brian Albert Pfister v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2600&caseNumber=A12019&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12019", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-04", - "case_names": "Joseph Edmund Ladick v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2597&caseNumber=A12205&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12205", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-05-04", - "case_names": "Jerry L. Coffin v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2598&caseNumber=A11878&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11878", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-20", - "case_names": "State of Alaska v. Lowell James Thompson, IV", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2595&caseNumber=A12764&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12764", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-20", - "case_names": "Andrew Dennis Johnson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2596&caseNumber=A12180&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12180", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-04-17", - "case_names": "State of Alaska v. Robert Daniel Bell", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2592&caseNumber=A12693&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12693", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-30", - "case_names": "Randolph Williams v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2594&caseNumber=A12183&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12183", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-02", - "case_names": "Jarrett J. Osborne v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2589&caseNumber=A11929&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11929", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-03-02", - "case_names": "Edwin Montal Medina v. State of Alaska, Edwin Montal Medina v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2590&caseNumber=A12520%2C%20A12529&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12520, A12529", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-02-23", - "case_names": "Cory L. Stoner v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2588&caseNumber=A11976&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11976", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-26", - "case_names": "Christian Lynn Beier v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2587&caseNumber=A12943&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12943", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-19", - "case_names": "Justin Earl Saunders v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2585&caseNumber=A11918&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11918", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-12", - "case_names": "State of Alaska, Department of Public Safety v. Superior Court", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2583&caseNumber=A13015&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A13015", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-12", - "case_names": "Christopher Wasili v. State of Alaska, Edward R. Chinuhuk v. State of Alaska, William Alexie v. State of Alaska, Herman Malutin, Jr. v. State of Alaska, Ross Apangalook v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2580&caseNumber=A11716%2C%20A11574%2C%20A11599%2C%20A11600%2C%20A11697&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11716, A11574, A11599, A11600, A11697", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-12", - "case_names": "Alaska Public Defender Agency v. Superior Court", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2582&caseNumber=A12814&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12814", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-12", - "case_names": "Aaron L. Arredondo v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2581&caseNumber=A11380&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11380", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2018-01-05", - "case_names": "David Joseph Thomas v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2579&caseNumber=A12853&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12853", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-08", - "case_names": "Sean A. Carpenter v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2577&caseNumber=A12045&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12045", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-01", - "case_names": "Teila Tofelogo v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2575&caseNumber=A12542&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12542", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-12-01", - "case_names": "Matthew James Treptow v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2576&caseNumber=A12092&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12092", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-09", - "case_names": "Loren J. Larson, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2574&caseNumber=A12725&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12725", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-11-03", - "case_names": "State of Alaska v. Peter Nicori, State of Alaska v. Winifred Olick, Peter Nicori v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2573&caseNumber=A12866%2C%20A12875%2C%20A12886&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12866, A12875, A12886", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-20", - "case_names": "Yuri Berezyuk v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2572&caseNumber=A12188&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12188", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-10-13", - "case_names": "James Kevin Coleman, (aka James Kevin Almudarris) v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2571&caseNumber=A11909&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11909", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-29", - "case_names": "Lewis Jordan Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2570&caseNumber=A12004&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12004", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-22", - "case_names": "Edwin Francis Parson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2569&caseNumber=A12024&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12024", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-15", - "case_names": "Devin M. Rossiter v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2568&caseNumber=A11300&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11300", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-08", - "case_names": "Virginia Mae Stamper v. State of Alaska, Jesse Robert Beebe v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2567&caseNumber=A11820%2C%20A11821&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11820, A11821", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-08", - "case_names": "Keane-Alexander Crawford v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2566&caseNumber=A10855&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10855", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-09-01", - "case_names": "Craig Snook v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2565&caseNumber=A12184&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12184", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-25", - "case_names": "James William Leffel v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2564&caseNumber=A11916&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11916", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-18", - "case_names": "Ryan Michael Thomas Brown v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2562&caseNumber=A12068&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12068", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-18", - "case_names": "Robert Dee Nicklie v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2563&caseNumber=A12179&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12179", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-08-04", - "case_names": "Kenneth Wahl v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2561&caseNumber=A11825&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11825", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-07-21", - "case_names": "Arthur A. Alexie, Sr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2560&caseNumber=A11988&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11988", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-16", - "case_names": "Shubhranjan Ghosh v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2559&caseNumber=A12374&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12374", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-09", - "case_names": "Trenton L. Shepersky v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2558&caseNumber=A12766&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12766", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-02", - "case_names": "Raymond Scott Brown v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2557&caseNumber=A12289&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12289", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-06-02", - "case_names": "Diego B. Mayuyo v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2556&caseNumber=A11786&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11786", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-26", - "case_names": "Jondean Willock v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2554&caseNumber=A11379&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11379", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-26", - "case_names": "Cyrus Gregory Taylor v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2555&caseNumber=A11719&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11719", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-19", - "case_names": "Elizabeth Watson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2553&caseNumber=A11592&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11592", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-12", - "case_names": "State of Alaska v. Kenneth John Jouppi, and Ken Air LLC, Ken Air, LLC v. State of Alaska, Kenneth John Jouppi v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2551&caseNumber=A11819%2C%20A11829%2C%20A11830&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11819, A11829, A11830", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-05-12", - "case_names": "Shannon Silook v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2552&caseNumber=A11608&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11608", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-28", - "case_names": "Rex Raymond Rask v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2550&caseNumber=A11407&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11407", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-14", - "case_names": "Municipality of Anchorage v. Mark Anthony Brooks", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2547&caseNumber=A12772&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12772", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-14", - "case_names": "Jonathon Rhea Hart v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2548&caseNumber=A12077&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12077", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-04-07", - "case_names": "Michael Anthony Roberts v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2546&caseNumber=A11626&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11626", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-03-17", - "case_names": "State of Alaska v. James R. Seigle", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2545&caseNumber=A11473&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11473", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-24", - "case_names": "Young Jae Kim v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2542&caseNumber=A11484&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11484", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-24", - "case_names": "Stanly Pieniazek v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2543&caseNumber=A11866&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11866", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-24", - "case_names": "Gary Lynn Johnson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2544&caseNumber=A11494&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11494", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-17", - "case_names": "Ronald F. Wyatt v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2538&caseNumber=A10791&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10791", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-17", - "case_names": "Frank Lewis Adams v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2540&caseNumber=A10549&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10549", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-17", - "case_names": "Dennis Olson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2539&caseNumber=A11872&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11872", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-17", - "case_names": "Darien L. Jeter v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2541&caseNumber=A11892&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11892", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-02-03", - "case_names": "Corrina McCord v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2537&caseNumber=A10982&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10982", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "Steven Stiner v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2536&caseNumber=A11722&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11722", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "State of Alaska v. Johnny B. Johnson", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2534&caseNumber=A12166&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12166", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "Richard Laverne Wagner Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2533&caseNumber=A11682&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11682", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "Nicholas Forsythe v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2535&caseNumber=A11871&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11871", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-27", - "case_names": "Kevin Patrick Maguire v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2532&caseNumber=A12392&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12392", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2017-01-06", - "case_names": "David Dirks v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2531&caseNumber=A11534&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11534", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-23", - "case_names": "Mamie Tinker v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2530&caseNumber=A12677&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12677", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-23", - "case_names": "Bambi Akers v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2529&caseNumber=A12009&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12009", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-12-16", - "case_names": "James E. Barber v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2528&caseNumber=A11401&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11401", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-11-18", - "case_names": "Bobby J. Bass v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2527&caseNumber=A11536&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11536", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-10-28", - "case_names": "Dale Starkey v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2526&caseNumber=A11514&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11514", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-23", - "case_names": "M.H. (Minor) v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2525&caseNumber=A12332&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12332", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-23", - "case_names": "Glenn D. Olson, II v. State of Alaska, DOC, Superintendent Conant", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2521&caseNumber=A12141&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12141", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-23", - "case_names": "Elizabeth Hillman v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2524&caseNumber=A12032&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12032", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-23", - "case_names": "Barry Bernard Sapp, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2523&caseNumber=A11755&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11755", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-23", - "case_names": "Andrew Victor Thomas v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2522&caseNumber=A11408&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11408", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-16", - "case_names": "Richard I. Miller v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2520&caseNumber=A11320&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11320", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-16", - "case_names": "Lennie Lane v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2519&caseNumber=A11019&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11019", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-02", - "case_names": "State of Alaska v. David Evans", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2515&caseNumber=A11865&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11865", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-02", - "case_names": "Christopher S. Hess v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2513&caseNumber=A11425&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11425", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-02", - "case_names": "Charles P. Moran v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2517&caseNumber=A11299&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11299", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-09-02", - "case_names": "AB & M Enterprises, Inc v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2518&caseNumber=A12014&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12014", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-19", - "case_names": "Tristan Jamall Grant v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2512&caseNumber=A12619&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12619", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-08-12", - "case_names": "Joshua Savo v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2511&caseNumber=A11742&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11742", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-22", - "case_names": "State of Alaska v. Shane Kidd Borowski", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2510&caseNumber=A11688&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11688", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-22", - "case_names": "Jeffery John Buckley v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2509&caseNumber=A12549&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12549", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-01", - "case_names": "William E. Palmer v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2507&caseNumber=A10972&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10972", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-07-01", - "case_names": "Patrick Leon Hinson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2508&caseNumber=A11839&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11839", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-24", - "case_names": "Nathaniel Hicks, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2506&caseNumber=A11826&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11826", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-24", - "case_names": "Lisa Trout v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2504&caseNumber=A11365&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11365", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-24", - "case_names": "Dana Thompson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2505&caseNumber=A11054&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11054", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-17", - "case_names": "Justin Isadore v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2503&caseNumber=A12537&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12537", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-06-17", - "case_names": "Frederick A. Pitka v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2502&caseNumber=A11122&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11122", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-27", - "case_names": "Ethan Moore v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2501&caseNumber=A11397&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11397", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-20", - "case_names": "Jesse C. Belarde v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2500&caseNumber=A11321&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11321", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-06", - "case_names": "Jean L. Schlosser, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2498&caseNumber=A11405&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11405", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-05-06", - "case_names": "Isaiah T. Belcher v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2499&caseNumber=A11632&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11632", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-04-29", - "case_names": "David N. David v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2497&caseNumber=A11252&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11252", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-18", - "case_names": "Eugene Bourdon v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2496&caseNumber=A11768&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11768", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-03-04", - "case_names": "State of Alaska v. Sammy Andreanoff", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2495&caseNumber=A11955&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11955", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-26", - "case_names": "State of Alaska v. David Spencer", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2494&caseNumber=A11895&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11895", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-26", - "case_names": "Fred Russell Crane v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2492&caseNumber=A11208&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11208", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-26", - "case_names": "Dimitrios Nickolaos Alexiadis v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2493&caseNumber=A12101&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12101", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-05", - "case_names": "Malik A. Taha v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2489&caseNumber=A11166&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11166", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-05", - "case_names": "Christopher O'Dell v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2491&caseNumber=A11986&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11986", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-02-05", - "case_names": "Alvin E. Wassillie v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2490&caseNumber=A11080&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11080", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-29", - "case_names": "Kevin M. Bergman v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2488&caseNumber=A11652&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11652", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-29", - "case_names": "John L. Smith Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2487&caseNumber=A12089&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12089", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-22", - "case_names": "Rusty K. Meyer v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2486&caseNumber=A11343&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11343", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-22", - "case_names": "Leta Allen v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2485&caseNumber=A11477&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11477", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-15", - "case_names": "Wilbert P. Bowlin v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2484&caseNumber=A11465&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11465", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2016-01-15", - "case_names": "James F. Letendre v. State of Alaska, Antonio N. Jordan v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2483&caseNumber=A11271%2C%20A11048&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11271, A11048", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-23", - "case_names": "Ronnie J. Beasley v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2482&caseNumber=A11698&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11698", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-18", - "case_names": "Thomas Alexander v. State of Alaska, State of Alaska v. Thomas Alexander and James Griffith", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2481&caseNumber=A11433%2C%20A11423&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11433, A11423", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-12-04", - "case_names": "Robin Sickel v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2480&caseNumber=A11393&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11393", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-11-13", - "case_names": "Rose M. Olson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2479&caseNumber=A11627&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11627", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-10-02", - "case_names": "Nathan Adams v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2478&caseNumber=A11112&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11112", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-25", - "case_names": "Walter Mantor v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2476&caseNumber=A11781&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11781", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-25", - "case_names": "Gerald McGowen v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2477&caseNumber=A10769&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10769", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-18", - "case_names": "State of Alaska v. Leonard Howard", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2475&caseNumber=A11430&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11430", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-04", - "case_names": "George Shayen III v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2474&caseNumber=A11137&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11137", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-09-04", - "case_names": "Curtis Donald Noble v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2473&caseNumber=A11041&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11041", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-28", - "case_names": "Vladimir A. Bochkovsky v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2471&caseNumber=A11100&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11100", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-28", - "case_names": "State of Alaska v. Larries Lee Williams", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2472&caseNumber=A11121&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11121", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-28", - "case_names": "Pamalea Joyce Ramsey v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2470&caseNumber=A11701&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11701", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-21", - "case_names": "Michael H. Glasgow v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2469&caseNumber=A11270&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11270", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-14", - "case_names": "George W. Lewis v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2468&caseNumber=A11189&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11189", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-07", - "case_names": "Steven Saepharn v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2467&caseNumber=A11170&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11170", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-08-07", - "case_names": "Steven Carter v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2466&caseNumber=A11631&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11631", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-31", - "case_names": "Kyle Adrian Rogers v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2465&caseNumber=A11071&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11071", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-24", - "case_names": "Arthur J. Augustine v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2464&caseNumber=A11614&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11614", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Terry Velarde v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2461&caseNumber=A11356&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11356", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-07-02", - "case_names": "Anthony James Lenz v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2460&caseNumber=A11545&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11545", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-26", - "case_names": "State of Alaska v. Edward G. Byford, Jr., Edward G. Byford, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2458&caseNumber=A11133%2C%20A11123&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11133, A11123", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-06-19", - "case_names": "Ivan J. Snowden v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2456&caseNumber=A10971&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10971", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-29", - "case_names": "Eric L. Smith v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2455&caseNumber=A11390&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11390", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-08", - "case_names": "Jason E. Selvester v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2542&caseNumber=A11746&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11746", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-05-08", - "case_names": "Harold E. Simon v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2453&caseNumber=A11002&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11002", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-24", - "case_names": "State of Alaska v. W.P., a minor, and A.P., mother", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2450&caseNumber=A11739&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11739", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-24", - "case_names": "Mark Alan Downs v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2451&caseNumber=A11329&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11329", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-10", - "case_names": "Margaret A. Kelley v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2449&caseNumber=A10882&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10882", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-04-03", - "case_names": "Amy Dawn Gibson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2448&caseNumber=A11094&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11094", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-27", - "case_names": "State of Alaska v. James Albrite, David Phillip v. State of Alaska, Brian Ivan v. State of Alaska, Joseph Spein v. State of Alaska, Noah Okoviak v. State of Alaska, Sammy Jackson II v. State of Alaska, Kenneth Andrews v. State of Alaska, Sammy G. Jackson I v. State of Alaska, James Albrite v. State of Alaska, Michael Andrew v. State of Alaska, Johnny I. Owens v. State of Alaska, Peter W. Hinz v. State of Alaska, Michael T. Frye v. State of Alaska, Patrick F. Black v. State of Alaska, State of Alaska v. David Philip, State of Alaska v. Kenneth Andrews, State of Alaska v. Peter Hinz, State of Alaska v. Patrick F. Black, State of Alaska v. Sammy G. Jackson, State of Alaska v. Johnny Owens, State of Alaska v. Joseph Spein, State of Alaska v. Brian Ivan, State of Alaska v. Michael T. Frye, State of Alaska v. Sammy Jackson II, State of Alaska v. Michael Andrew, State of Alaska v. Noah Okoviak", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2446&caseNumber=A11619%2C%20A11580%2C%20A11581%2C%20A11582%2C%20A11583%2C%20A11584%2C%20A11585%2C%20A11586%2C%20A11588%2C%20A11594%2C%20A11595%2C%20A11596%2C%20A11604%2C%20A11605%2C%20A11620%2C%20A11629%2C%20A11630%2C%20A11639%2C%20A11640%2C%20A11649%2C%20A11650%2C%20A11659%2C%20A11660%2C%20A11669%2C%20A11670%2C%20A11679&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11619, A11580, A11581, A11582, A11583, A11584, A11585, A11586, A11588, A11594, A11595, A11596, A11604, A11605, A11620, A11629, A11630, A11639, A11640, A11649, A11650, A11659, A11660, A11669, A11670, A11679", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-27", - "case_names": "Sean Wright v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2447&caseNumber=A10587&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10587", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-03-20", - "case_names": "Clifford Murray v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2445&caseNumber=A11191&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11191", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-27", - "case_names": "Public Defender Agency v. Superior Court, Third Judicial District, Anchorage", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2444&caseNumber=A12053&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A12053", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-02-06", - "case_names": "Rachelle Waterman v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2441&caseNumber=A11052&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11052", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2015-01-30", - "case_names": "Harold Kankanton v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2440&caseNumber=A11093&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11093", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-26", - "case_names": "Wilburn D. Jackson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2439&caseNumber=A10835&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10835", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-12-12", - "case_names": "Tex Daniels v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2438&caseNumber=A11424&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11424", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-28", - "case_names": "Anthony W. Stiffarm Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2437&caseNumber=A11198&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11198", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-21", - "case_names": "Michael Rae v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2436&caseNumber=A11274&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11274", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-21", - "case_names": "John Pletcher, IV v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2435&caseNumber=A11492&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11492", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-14", - "case_names": "State of Alaska v. Demetrius J. Finley", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2433&caseNumber=A11552&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11552", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-11-14", - "case_names": "Mark D. Anderson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2434&caseNumber=A10776&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10776", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-10-24", - "case_names": "State of Alaska v. Tara Leighton", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2431&caseNumber=A11389&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11389", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-26", - "case_names": "Earl Tyrone Morris v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2429&caseNumber=A11178&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11178", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-26", - "case_names": "Byron F. Geisinger v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2430&caseNumber=A11881&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11881", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-19", - "case_names": "Patrick Tickett v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2427&caseNumber=A11043&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11043", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-19", - "case_names": "Johnnie J. Gamble v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2428&caseNumber=A11042&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11042", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-09-12", - "case_names": "Roland Johnson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2426&caseNumber=A11068&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11068", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-29", - "case_names": "Linden Fyfe v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2425&caseNumber=A11058&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11058", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-08", - "case_names": "Isaac D. Siedentop v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2424&caseNumber=A11085&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11085", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-01", - "case_names": "Norman Wassilie v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2423&caseNumber=A11654&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11654", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-08-01", - "case_names": "Arron Young v. State of Alaska, Arron Young v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2422&caseNumber=A11015%2C%20A11006&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11015, A11006", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-25", - "case_names": "Michael Warlick, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2421&caseNumber=A10821&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10821", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Michael Wayne Phillips v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2420&caseNumber=A11173&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11173", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "Carrie D. Simants v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2419&caseNumber=A11404&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11404", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-27", - "case_names": "Robert Roy Roth Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2417&caseNumber=A11088&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11088", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-27", - "case_names": "Jerry Lewis Anthony v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2418&caseNumber=A11159&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11159", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-13", - "case_names": "Thomas Hannam v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2416&caseNumber=A11561&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11561", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-11", - "case_names": "Kevin S. Patterson v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2414&caseNumber=A11501&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11501", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-04-11", - "case_names": "Christian Gou-Leonhardt v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2415&caseNumber=A11549&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11549", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-21", - "case_names": "Timothy E. Mund v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2413&caseNumber=A10800&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10800", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-14", - "case_names": "Ronald K. Barr, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2412&caseNumber=A10946&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10946", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2014-03-07", - "case_names": "Valerie Leggett v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2411&caseNumber=A11136&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11136", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-27", - "case_names": "State of Alaska v. Rocky Estrada, Stanley Johnson and Albert Kookesh", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2408&caseNumber=A10893&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10893", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-27", - "case_names": "State of Alaska v. Karan V. Clifton", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2409&caseNumber=A10941&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10941", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-20", - "case_names": "James H. Luckart v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2406&caseNumber=A11292&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11292", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-20", - "case_names": "Daniel Fisher v. State of Alaska, Department of Corrections", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2407&caseNumber=A11376&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11376", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-13", - "case_names": "Serena Joseph v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2404&caseNumber=A10945&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10945", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-13", - "case_names": "Lori S. Welsh v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2405&caseNumber=A11197&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11197", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-12-06", - "case_names": "Trygve Angasan v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2403&caseNumber=A10948&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10948", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-22", - "case_names": "Dessie Ford Miller, IV v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2402&caseNumber=A10891&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10891", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-11-08", - "case_names": "Kenneth Lewis, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2401&caseNumber=A10957&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10957", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-09-27", - "case_names": "State of Alaska v. Jose Manuel Perez, State of Alaska v. Michael Silvera, Michael Silvera v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2400&caseNumber=A11195%2C%20A11174%2C%20A11193&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11195, A11174, A11193", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-09-27", - "case_names": "Jonathan N. Jarnig v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2399&caseNumber=A10519&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10519", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-16", - "case_names": "Richard Francis Hunter v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2398&caseNumber=A10657&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10657", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-08-02", - "case_names": "Duwaine E. Price v. State of Alaska, David George v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2397&caseNumber=A10864%2C%20A11050&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10864, A11050", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-26", - "case_names": "Tracy Hutton v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2395&caseNumber=A10836&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10836", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-26", - "case_names": "Dennis Davison v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2396&caseNumber=A10228&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10228", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-19", - "case_names": "Michael B. Knipe v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2394&caseNumber=A10886&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10886", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-07-05", - "case_names": "Sven Rofkar v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2383&caseNumber=A10383&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10383", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-06-28", - "case_names": "Bert Flood, Sr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2392&caseNumber=A11103&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11103", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-04-26", - "case_names": "Nicholas Stepovich v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2391&caseNumber=A10668&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10668", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-04-05", - "case_names": "James Clifton Moore v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2390&caseNumber=A10661&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10661", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-04-05", - "case_names": "Brett White v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2389&caseNumber=A10902&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10902", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-03-29", - "case_names": "Gene V. Martin, Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2388&caseNumber=A10592&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10592", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-03-22", - "case_names": "Sam G. Williams Jr. v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2387&caseNumber=A10763&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10763", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-22", - "case_names": "Jose K. Diorec, III v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2386&caseNumber=A11018&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11018", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2013-02-08", - "case_names": "Bobbie Lengele v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2385&caseNumber=A10679&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10679", - "citations": "", - "case_name_shorts": "" - }, - { - "case_dates": "2012-12-14", - "case_names": "N.G. v. Superior Court", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2384&caseNumber=A11049&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A11049", - "citations": "", - "case_name_shorts": "N.G." - }, - { - "case_dates": "2012-12-14", - "case_names": "Angelo Joseph v. State of Alaska", - "download_urls": "/CMSPublic/UserControl/OpenOpinionDocument?docNumber=2383&caseNumber=A10795&opinionType=OP", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "A10795", - "citations": "", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "date_filed": "2018-08-31", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gP0PK25q0VAvZSHCa0U22QG1Pd9KdMUrOse4hW+1UFKwzxcFrHt9Wfy'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Latrell Donel Wynne v State of Alaska", + "case_name_short": "" + }, + "docket_number": "A11540", + "case_name": "Latrell Donel Wynne v State of Alaska", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2018-08-31", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gMmwEkSTNUMh+NOL5+ljWCMPhnjNUgOg66by9xyTg/+0iXcR+qNvw6c'" + } + ], + "nature_of_suit": "Appeal", + "disposition": "Affirm", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Daniel Lee Brown v State of Alaska", + "case_name_short": "" + }, + "docket_number": "A12335", + "case_name": "Daniel Lee Brown v State of Alaska", + "date_filed": "2015-07-08", + "OriginatingCourtInformation": { + "docket_number": "3PA-14-01076CR", + "date_judgment": "2015-06-08", + "assigned_to_str": "Kari Kristiansen" + }, + "appeal_from_str": "Superior", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2018-08-17", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gNQb7rNzFrj3wsXH509w3wa3vFVMXrQ+VJEgLFbt/Xwv4cXblMZUrUs'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Municipality of Anchorage v Wayne Edward Beezley", + "case_name_short": "" + }, + "docket_number": "A12850", + "case_name": "Municipality of Anchorage v Wayne Edward Beezley", + "source": 2, + "blocked": false, + "case_name_short": "" + } + }, + { + "Docket": { + "OpinionCluster": { + "date_filed": "2018-08-17", + "Opinions": [ + { + "download_url": "/CMSPublic/UserControl/OpenOpinionDocument?q=ujbkX9FR3gOZ3VDvF74BwFAf7Ywf1shdhPldO3D+eVxgwi6AiQCTvSHvYuRtDmfe'" + } + ], + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Mikos Simmons v State of Alaska", + "case_name_short": "" + }, + "docket_number": "A12147", + "case_name": "Mikos Simmons v State of Alaska", + "source": 2, + "blocked": false, + "case_name_short": "" + } } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaskactapp_example.html b/tests/examples/opinions/united_states/alaskactapp_example.html index eed88f19e..b09affc38 100644 --- a/tests/examples/opinions/united_states/alaskactapp_example.html +++ b/tests/examples/opinions/united_states/alaskactapp_example.html @@ -1,364 +1,108 @@ - + - + + Opinions - - - - - - - - - - - - + -
-
-
- -
- - - - - - - -
-
-
-
-

Court of Appeals Opinions

-
-

- Recent Decisions -

-

- These decisions are provided in Adobe Acrobat PDF format. If you do not have the Adobe Acrobat Reader, click here to download a free copy. -

- Older internet browsers like Internet Explorer 7 and earlier may not be able to display the document downloads correctly. - Instead of upgrading, you may try using a different browser such as Chrome or Firefox to see if the page is displayed correctly. -
-
- - Opinions are published weekly on Fridays at 9AM. If you have visited this page and not refreshed prior to 9AM Friday, please refresh to see the latest postings. -
-

- -
-
-
Thursday, October 17, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2660 -A12135 Jason D. Ray v State of Alaska
- -2661 -A12442 Joshua W. Cole v. State of Alaska
- -
-
-
Friday, October 11, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2658 -A12614 Norman McDaniels v State of Alaska
- -2659 -A12557 Louie C. Dulier Sr. v. State of Alaska
- -
-
-
Friday, October 4, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2657 -A12645 Richard A. Kinmon v. State of Alaska
- -
-
-
Friday, September 27, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2655 -A12904 Mae Lu Good v Municipality of Anchorage
- -2656 -A12301, A12282 State of Alaska v. Yoder Austin Blalock, Yoder Austin Blalock v. State of Alaska
+
+
+
+
+
+
+
+

Court of Appeals Opinions

-
-
Friday, August 30, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2654 -A12097 Celesty Noel Farmer v State of Alaska
- +

- Recent Decisions -

+

+

+
+
+ Opinions are published weekly + on + Fridays at 9AM. If you have visited this page and not refreshed prior to 9AM Friday, please refresh + to see the latest postings.
-
-
Friday, August 23, 2019
- - - - - - - - - - - - - - - - - - - - - - - - +
+

- - - - - - - -
- -2652 -A12620 Gareth R. Demoski v State of Alaska
- -2653 -A12494 Earl Dean Robbins v. State of Alaska
-
-
Friday, July 26, 2019
- - +
Friday, August 31, 2018
+
@@ -366,63 +110,45 @@
Friday, July 26, 2019
- - - - - - - - - - - -
- -2651 -A12382 Clayton Phillip Allison v. State of Alaska
- -
-
-
Friday, July 19, 2019
- - - - - - - - - - + + + + + - - - - - - - - - - + + + + +
+ + 2616 + A12335 + Daniel Lee Brown + v State of Alaska
- -2650 -A11966 Marquinn Jones-Nelson v State of Alaska + + + + 2615 + A11540 + Latrell Donel + Wynne v State of Alaska
-
-
Friday, June 28, 2019
- - +
Friday, August 17, 2018
+
@@ -430,20998 +156,50 @@
Friday, June 28, 2019
- - - - - - - - - + + + + + - - - - - - - + + + + +
- -2648 -A12091 Adam Keith Kasgnoc Sr. v State of Alaska + + + + 2614 + A12850 + Municipality of + Anchorage v Wayne Edward Beezley
- -2649 -A12719 Brian Hall v. State of Alaska + + + + 2613 + A12147 + Mikos Simmons v + State of Alaska
-
-
-
Friday, June 7, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - -
- -2647 -A13416 Mark Daniel Torgerson v. State of Alaska
- -2646 -A12294 Lanolan Anderson v State of Alaska
+ -
-
-
Friday, May 24, 2019
+ - - - - - - - - - - - - - - - - - - - - - - - -
- -2645 -A12328 Dwight Samuel O'Connor v State of Alaska
- -
-
-
Friday, May 17, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2644 -A12338 Adam Charles Dere v State of Alaska
- -
-
-
Friday, May 3, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2643 -A12534 State of Alaska v Thomas A. Mayfield
- -
-
-
Friday, April 5, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2642 -A12244 Wendy Christine Williams v State of Alaska
- -
-
-
Friday, March 15, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2641 -A11636 State of Alaska v Jason Lee Carlson
- -
-
-
Friday, March 1, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2638 -A12067 Jerry Gene Inga v State of Alaska
- -2639 -A11450 Jackie Russell Adams v State of Alaska
- -2640 -A12309 Teddy Smith v. State of Alaska
- -
-
-
Friday, February 22, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2637 -A12222 Stacey Allen Graham v State of Alaska
- -2636 -A12105 Stephen Alvarado v State of Alaska
- -
-
-
Friday, February 15, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2635 -A12810 Caroline K. Swartz v Municipality of Anchorage
- -
-
-
Friday, February 8, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2634 -A13315 State of Alaska v. Jeremy D. Simile
- -
-
-
Friday, February 1, 2019
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2633 -A12640 Wilson William Fox v State of Alaska
- -2632 -A12443 Erin A. Pohland v. State of Alaska
- -
-
-
Friday, January 11, 2019
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2631 -A12804 Eric Penetac v Municipality of Anchorage
- -
-
-
Friday, December 28, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2630 -A12119 James A. Charles v State of Alaska
- -
-
-
Friday, December 14, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2627 -A12131 Brant Josef Natori Marshall v State of Alaska
- -2628 -A12617 James Patrick Tanner v State of Alaska
- -2629 -A12600 Jennifer Anderson v State of Alaska
- -
-
-
Friday, November 30, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2626 -A11949 Vicky Love v State of Alaska
- -
-
-
Friday, November 23, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2625 -A12323 R.C. (Minor) v State of Alaska
- -
-
-
Friday, November 16, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2623 -A11699 Newton Patric Lambert v State of Alaska
- -
-
-
Friday, November 9, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2622 -A12271 Thomas Leonard Massey, Jr. v State of Alaska
- -2621 -A12470 Jesus Alberto Cardenas v State of Alaska
- -
-
-
Friday, October 19, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2619 -A12342 David William Bragg v State of Alaska
- -2620 -A13191 Michael Saofaga, Jr. v State of Alaska
- -
-
-
Friday, October 5, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2618 -A13165 Stephanie Hamburg v State of Alaska434 P.3d 1165
- -
-
-
Friday, September 7, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2617 -A11603 Harold Sakar v State of Alaska436 P.3d 479
- -
-
-
Friday, August 31, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2616 -A12335 Daniel Lee Brown v State of Alaska435 P.3d 989
- -2615 -A11540 Latrell Donel Wynne v State of Alaska
- -
-
-
Friday, August 17, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2614 -A12850 Municipality of Anchorage v Wayne Edward Beezley
- -2613 -A12147 Mikos Simmons v State of Alaska
- -
-
-
Friday, August 3, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2611 -A11318 Martin Tyler Kozevnikoff v State of Alaska433 P.3d 546
- -2612 -A12377 State of Alaska v Terra Adams426 P.3d 1172
- -
-
-
Friday, July 27, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2610 -A12471 Shawn Belknap v State of Alaska426 P.3d 1156
- -2608 -A12390 James Earl Smith v State of Alaska426 P.3d 1162
- -2609 -A12955 Daniel Matthew McMullen v State of Alaska426 P.3d 1168
- -
-
-
Friday, June 22, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2605 -A11666 Jeffrey L. Brown v State of Alaska
- -2607 -A12295 State of Alaska v Timothy Baker425 P.3d 210
- -2604 -A12060 Paino Manuel Alvarez-Perdomo v State of Alaska425 P.3d 221
- -2606 -A12061 Robert D. Kowalski v State of Alaska
- -
-
-
Friday, June 1, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2601 -A11999 Jeromy Francis Hurlburt v State of Alaska
- -2602 -A11452 Roy Silas v State of Alaska425 P.3d. 197
- -2603 -A11268 Eric Sherron McGuire v State of Alaska
- -
-
-
Friday, May 18, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2599 -A12783 Falealo Manuele Pulusila v State of Alaska
- -2600 -A12019 Brian Albert Pfister v State of Alaska
- -
-
-
Friday, May 4, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2598 -A11878 Jerry L. Coffin v State of Alaska
- -2597 -A12205 Joseph Edmund Ladick v State of Alaska
- -
-
-
Friday, April 20, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2596 -A12180 Andrew Dennis Johnson v State of Alaska
- -2595 -A12764 State of Alaska v Lowell James Thompson, IV
- -
-
-
Tuesday, April 17, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2592 -A12693 State of Alaska v Robert Daniel Bell
- -
-
-
Friday, March 30, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2594 -A12183 Randolph Williams v State of Alaska
- -
-
-
Friday, March 16, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2593 -A11926 Benjamin Vaitului Lega v State of Alaska425 P.3d 160
- -
-
-
Friday, March 2, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2589 -A11929 Jarrett J. Osborne v State of Alaska
- -2590 -A12520, A12529 Edwin Montal Medina v State of Alaska, Edwin Montal Medina v State of Alaska
- -
-
-
Friday, February 23, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2588 -A11976 Cory L. Stoner v State of Alaska
- -
-
-
Friday, January 26, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2587 -A12943 Christian Lynn Beier v State of Alaska
- -
-
-
Friday, January 19, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2586 -A11756 Robert James Luch v State of Alaska413 P.3d 1224
- -2585 -A11918 Justin Earl Saunders v State of Alaska
- -
-
-
Friday, January 12, 2018
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2580 -A11716, A11574, A11599, A11600, A11697 Christopher Wasili v State of Alaska, Edward R. Chinuhuk v State of Alaska, William Alexie v State of Alaska, Herman Malutin, Jr. v State of Alaska, Ross Apangalook v State of Alaska
- -2582 -A12814 Alaska Public Defender Agency v Superior Court
- -2583 -A13015 State of Alaska, Department of Public Safety v Superior Court
- -2581 -A11380 Aaron L. Arredondo v State of Alaska
- -
-
-
Friday, January 5, 2018
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2579 -A12853 David Joseph Thomas v State of Alaska
- -
-
-
Friday, December 15, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2578 -A11731 Jace H. Cunningham v State of Alaska408 P.3d 1238
- -
-
-
Friday, December 8, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2577 -A12045 Sean A. Carpenter v State of Alaska
- -
-
-
Friday, December 1, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2576 -A12092 Matthew James Treptow v State of Alaska
- -2575 -A12542 Teila Tofelogo v State of Alaska
- -
-
-
Thursday, November 9, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2574 -A12725 Loren J. Larson, Jr. v State of Alaska
- -
-
-
Friday, November 3, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2573 -A12866, A12875, A12886 State of Alaska v Peter Nicori, State of Alaska v Winifred Olick, Peter Nicori v State of Alaska
- -
-
-
Friday, October 20, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2572 -A12188 Yuri Berezyuk v State of Alaska
- -
-
-
Friday, October 13, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2571 -A11909 James Kevin Coleman, (aka James Kevin Almudarris) v State of Alaska
- -
-
-
Friday, September 29, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2570 -A12004 Lewis Jordan Jr. v State of Alaska
- -
-
-
Friday, September 22, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2569 -A12024 Edwin Francis Parson v State of Alaska
- -
-
-
Friday, September 15, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2568 -A11300 Devin M. Rossiter v State of Alaska
- -
-
-
Friday, September 8, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2566 -A10855 Keane-Alexander Crawford v State of Alaska
- -2567 -A11820, A11821 Virginia Mae Stamper v State of Alaska, Jesse Robert Beebe v State of Alaska
- -
-
-
Friday, September 1, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2565 -A12184 Craig Snook v State of Alaska
- -
-
-
Friday, August 25, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2564 -A11916 James William Leffel v State of Alaska
- -
-
-
Friday, August 18, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2562 -A12068 Ryan Michael Thomas Brown v State of Alaska
- -2563 -A12179 Robert Dee Nicklie v State of Alaska
- -
-
-
Friday, August 4, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2561 -A11825 Kenneth Wahl v State of Alaska
- -
-
-
Friday, July 21, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2560 -A11988 Arthur A. Alexie, Sr. v State of Alaska
- -
-
-
Friday, June 16, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2559 -A12374 Shubhranjan Ghosh v State of Alaska
- -
-
-
Friday, June 9, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2558 -A12766 Trenton L. Shepersky v State of Alaska
- -
-
-
Friday, June 2, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2557 -A12289 Raymond Scott Brown v State of Alaska
- -2556 -A11786 Diego B. Mayuyo v State of Alaska
- -
-
-
Friday, May 26, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2555 -A11719 Cyrus Gregory Taylor v State of Alaska
- -2554 -A11379 Jondean Willock v State of Alaska
- -
-
-
Friday, May 19, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2553 -A11592 Elizabeth Watson v State of Alaska
- -
-
-
Friday, May 12, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2552 -A11608 Shannon Silook v State of Alaska
- -2551 -A11819, A11829, A11830 State of Alaska v Kenneth John Jouppi, and Ken Air LLC, Ken Air, LLC v State of Alaska, Kenneth John Jouppi v State of Alaska
- -
-
-
Friday, April 28, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2550 -A11407 Rex Raymond Rask v State of Alaska
- -
-
-
Friday, April 14, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2547 -A12772 Municipality of Anchorage v Mark Anthony Brooks
- -2548 -A12077 Jonathon Rhea Hart v State of Alaska
- -
-
-
Friday, April 7, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2546 -A11626 Michael Anthony Roberts v State of Alaska
- -
-
-
Friday, March 17, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2545 -A11473 State of Alaska v James R. Seigle
- -
-
-
Friday, February 24, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2542 -A11484 Young Jae Kim v State of Alaska
- -2544 -A11494 Gary Lynn Johnson v State of Alaska
- -2543 -A11866 Stanly Pieniazek v State of Alaska
- -
-
-
Friday, February 17, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2538 -A10791 Ronald F. Wyatt v State of Alaska
- -2540 -A10549 Frank Lewis Adams v State of Alaska
- -2541 -A11892 Darien L. Jeter v State of Alaska
- -2539 -A11872 Dennis Olson v State of Alaska
- -
-
-
Friday, February 3, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2537 -A10982 Corrina McCord v State of Alaska
- -
-
-
Friday, January 27, 2017
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2534 -A12166 State of Alaska v Johnny B. Johnson
- -2536 -A11722 Steven Stiner v State of Alaska
- -2535 -A11871 Nicholas Forsythe v State of Alaska
- -2533 -A11682 Richard Laverne Wagner Jr. v State of Alaska
- -2532 -A12392 Kevin Patrick Maguire v State of Alaska
- -
-
-
Friday, January 6, 2017
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2531 -A11534 David Dirks v State of Alaska
- -
-
-
Friday, December 23, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2530 -A12677 Mamie Tinker v State of Alaska
- -2529 -A12009 Bambi Akers v State of Alaska
- -
-
-
Friday, December 16, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2528 -A11401 James E. Barber v State of Alaska
- -
-
-
Friday, November 18, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2527 -A11536 Bobby J. Bass v State of Alaska
- -
-
-
Friday, October 28, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2526 -A11514 Dale Starkey v State of Alaska
- -
-
-
Friday, September 23, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2522 -A11408 Andrew Victor Thomas v State of Alaska
- -2525 -A12332 M.H. (Minor) v State of Alaska
- -2524 -A12032 Elizabeth Hillman v State of Alaska
- -2523 -A11755 Barry Bernard Sapp, Jr. v State of Alaska
- -2521 -A12141 Glenn D. Olson, II v State of Alaska, DOC, Superintendent Conant
- -
-
-
Friday, September 16, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2519 -A11019 Lennie Lane v State of Alaska
- -2520 -A11320 Richard I. Miller v State of Alaska
- -
-
-
Friday, September 2, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2517 -A11299 Charles P. Moran v State of Alaska
- -2513 -A11425 Christopher S. Hess v State of Alaska
- -2518 -A12014 AB & M Enterprises, Inc v State of Alaska
- -2515 -A11865 State of Alaska v David Evans
- -
-
-
Friday, August 19, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2512 -A12619 Tristan Jamall Grant v State of Alaska
- -
-
-
Friday, August 12, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2511 -A11742 Joshua Savo v State of Alaska
- -
-
-
Friday, July 22, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2509 -A12549 Jeffery John Buckley v State of Alaska
- -2510 -A11688 State of Alaska v Shane Kidd Borowski
- -
-
-
Friday, July 1, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2508 -A11839 Patrick Leon Hinson v State of Alaska
- -2507 -A10972 William E. Palmer v State of Alaska
- -
-
-
Friday, June 24, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2505 -A11054 Dana Thompson v State of Alaska
- -2506 -A11826 Nathaniel Hicks, Jr. v State of Alaska
- -2504 -A11365 Lisa Trout v State of Alaska
- -
-
-
Friday, June 17, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2503 -A12537 Justin Isadore v State of Alaska
- -2502 -A11122 Frederick A. Pitka v State of Alaska
- -
-
-
Friday, May 27, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2501 -A11397 Ethan Moore v State of Alaska
- -
-
-
Friday, May 20, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2500 -A11321 Jesse C. Belarde v State of Alaska
- -
-
-
Friday, May 6, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2498 -A11405 Jean L. Schlosser, Jr. v State of Alaska
- -2499 -A11632 Isaiah T. Belcher v State of Alaska
- -
-
-
Friday, April 29, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2497 -A11252 David N. David v State of Alaska
- -
-
-
Friday, March 18, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2496 -A11768 Eugene Bourdon v State of Alaska
- -
-
-
Friday, March 4, 2016
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2495 -A11955 State of Alaska v Sammy Andreanoff
- -
-
-
Friday, February 26, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2494 -A11895 State of Alaska v David Spencer
- -2493 -A12101 Dimitrios Nickolaos Alexiadis v State of Alaska
- -2492 -A11208 Fred Russell Crane v State of Alaska
- -
-
-
Friday, February 5, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2490 -A11080 Alvin E. Wassillie v State of Alaska
- -2489 -A11166 Malik A. Taha v State of Alaska
- -2491 -A11986 Christopher O'Dell v State of Alaska
- -
-
-
Friday, January 29, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2487 -A12089 John L. Smith Jr. v State of Alaska
- -2488 -A11652 Kevin M. Bergman v State of Alaska
- -
-
-
Friday, January 22, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2486 -A11343 Rusty K. Meyer v State of Alaska
- -2485 -A11477 Leta Allen v State of Alaska
- -
-
-
Friday, January 15, 2016
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2484 -A11465 Wilbert P. Bowlin v State of Alaska
- -2483 -A11271, A11048 James F. Letendre v State of Alaska, Antonio N. Jordan v State of Alaska
- -
-
-
Wednesday, December 23, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2482 -A11698 Ronnie J. Beasley v State of Alaska
- -
-
-
Friday, December 18, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2481 -A11433, A11423 Thomas Alexander v State of Alaska, State of Alaska v Thomas Alexander and James Griffith
- -
-
-
Friday, December 4, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2480 -A11393 Robin Sickel v State of Alaska
- -
-
-
Friday, November 13, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2479 -A11627 Rose M. Olson v State of Alaska
- -
-
-
Friday, October 2, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2478 -A11112 Nathan Adams v State of Alaska
- -
-
-
Friday, September 25, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2477 -A10769 Gerald McGowen v State of Alaska
- -2476 -A11781 Walter Mantor v State of Alaska
- -
-
-
Friday, September 18, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2475 -A11430 State of Alaska v Leonard Howard
- -
-
-
Friday, September 4, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2474 -A11137 George Shayen III v State of Alaska
- -2473 -A11041 Curtis Donald Noble v State of Alaska
- -
-
-
Friday, August 28, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2471 -A11100 Vladimir A. Bochkovsky v State of Alaska
- -2472 -A11121 State of Alaska v Larries Lee Williams
- -2470 -A11701 Pamalea Joyce Ramsey v State of Alaska
- -
-
-
Friday, August 21, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2469 -A11270 Michael H. Glasgow v State of Alaska
- -
-
-
Friday, August 14, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2468 -A11189 George W. Lewis v State of Alaska
- -
-
-
Friday, August 7, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2467 -A11170 Steven Saepharn v State of Alaska
- -2466 -A11631 Steven Carter v State of Alaska
- -
-
-
Friday, July 31, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2465 -A11071 Kyle Adrian Rogers v State of Alaska
- -
-
-
Friday, July 24, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2464 -A11614 Arthur J. Augustine v State of Alaska
- -
-
-
Thursday, July 2, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2460 -A11545 Anthony James Lenz v State of Alaska
- -2461 -A11356 Terry Velarde v State of Alaska
- -
-
-
Friday, June 26, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -11422 -A11422 Jimmy A. Lampley v State of Alaska
- -2458 -A11133, A11123 State of Alaska v Edward G. Byford, Jr., Edward G. Byford, Jr. v State of Alaska
- -
-
-
Friday, June 19, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2456 -A10971 Ivan J. Snowden v State of Alaska
- -
-
-
Friday, May 29, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2455 -A11390 Eric L. Smith v State of Alaska
- -
-
-
Friday, May 8, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2453 -A11002 Harold E. Simon v State of Alaska
- -2542 -A11746 Jason E. Selvester v State of Alaska
- -
-
-
Wednesday, May 6, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6182 -A10554 Hector R. Alvarenga v State of Alaska
- -
-
-
Friday, April 24, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2450 -A11739 State of Alaska v W.P., a minor, and A.P., mother
- -2451 -A11329 Mark Alan Downs v State of Alaska
- -
-
-
Friday, April 10, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2449 -A10882 Margaret A. Kelley v State of Alaska
- -
-
-
Friday, April 3, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2448 -A11094 Amy Dawn Gibson v State of Alaska
- -
-
-
Friday, March 27, 2015
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2447 -A10587 Sean Wright v State of Alaska
- -2446 -A11619, A11580, A11581, A11582, A11583, A11584, A11585, A11586, A11588, A11594, A11595, A11596, A11604, A11605, A11620, A11629, A11630, A11639, A11640, A11649, A11650, A11659, A11660, A11669, A11670, A11679 State of Alaska v James Albrite, David Phillip v State of Alaska, Brian Ivan v State of Alaska, Joseph Spein v State of Alaska, Noah Okoviak v State of Alaska, Sammy Jackson II v State of Alaska, Kenneth Andrews v State of Alaska, Sammy G. Jackson I v State of Alaska, James Albrite v State of Alaska, Michael Andrew v State of Alaska, Johnny I. Owens v State of Alaska, Peter W. Hinz v State of Alaska, Michael T. Frye v State of Alaska, Patrick F. Black v State of Alaska, State of Alaska v David Philip, State of Alaska v Kenneth Andrews, State of Alaska v Peter Hinz, State of Alaska v Patrick F. Black, State of Alaska v Sammy G. Jackson, State of Alaska v Johnny Owens, State of Alaska v Joseph Spein, State of Alaska v Brian Ivan, State of Alaska v Michael T. Frye, State of Alaska v Sammy Jackson II, State of Alaska v Michael Andrew, State of Alaska v Noah Okoviak
- -
-
-
Friday, March 20, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2445 -A11191 Clifford Murray v State of Alaska
- -
-
-
Friday, February 27, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2444 -A12053 Public Defender Agency v Superior Court, Third Judicial District, Anchorage
- -
-
-
Friday, February 20, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- - -A11734 State of Alaska v Tristan Stidston
- -
-
-
Friday, February 6, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2441 -A11052 Rachelle Waterman v State of Alaska
- -
-
-
Friday, January 30, 2015
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2440 -A11093 Harold Kankanton v State of Alaska
- -
-
-
Friday, December 26, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2439 -A10835 Wilburn D. Jackson v State of Alaska
- -
-
-
Friday, December 12, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2438 -A11424 Tex Daniels v State of Alaska
- -
-
-
Friday, November 28, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2437 -A11198 Anthony W. Stiffarm Jr. v State of Alaska
- -
-
-
Friday, November 21, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2435 -A11492 John Pletcher, IV v State of Alaska
- -2436 -A11274 Michael Rae v State of Alaska
- -
-
-
Friday, November 14, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2434 -A10776 Mark D. Anderson v State of Alaska
- -2433 -A11552 State of Alaska v Demetrius J. Finley
- -
-
-
Friday, October 24, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2431 -A11389 State of Alaska v Tara Leighton
- -
-
-
Friday, September 26, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2429 -A11178 Earl Tyrone Morris v State of Alaska
- -2430 -A11881 Byron F. Geisinger v State of Alaska
- -
-
-
Friday, September 19, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2428 -A11042 Johnnie J. Gamble v State of Alaska
- -2427 -A11043 Patrick Tickett v State of Alaska
- -
-
-
Friday, September 12, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2426 -A11068 Roland Johnson v State of Alaska
- -
-
-
Friday, August 29, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2425 -A11058 Linden Fyfe v State of Alaska
- -
-
-
Friday, August 8, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2424 -A11085 Isaac D. Siedentop v State of Alaska
- -
-
-
Friday, August 1, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2422 -A11015, A11006 Arron Young v State of Alaska, Arron Young v State of Alaska
- -2423 -A11654 Norman Wassilie v State of Alaska
- -
-
-
Friday, July 25, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2421 -A10821 Michael Warlick, Jr. v State of Alaska
- -
-
-
Thursday, July 3, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2419 -A11404 Carrie D. Simants v State of Alaska
- -2420 -A11173 Michael Wayne Phillips v State of Alaska
- -
-
-
Friday, June 27, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2418 -A11159 Jerry Lewis Anthony v State of Alaska
- -2417 -A11088 Robert Roy Roth Jr. v State of Alaska
- -
-
-
Friday, June 13, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2416 -A11561 Thomas Hannam v State of Alaska
- -
-
-
Friday, April 11, 2014
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2415 -A11549 Christian Gou-Leonhardt v State of Alaska
- -2414 -A11501 Kevin S. Patterson v State of Alaska
- -
-
-
Friday, March 21, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2413 -A10800 Timothy E. Mund v State of Alaska
- -
-
-
Friday, March 14, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2412 -A10946 Ronald K. Barr, Jr. v State of Alaska
- -
-
-
Friday, March 7, 2014
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2411 -A11136 Valerie Leggett v State of Alaska
- -
-
-
Friday, December 27, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2409 -A10941 State of Alaska v Karan V. Clifton
- -2408 -A10893 State of Alaska v Rocky Estrada, Stanley Johnson and Albert Kookesh
- -
-
-
Friday, December 20, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2407 -A11376 Daniel Fisher v State of Alaska, Department of Corrections
- -2406 -A11292 James H. Luckart v State of Alaska
- -
-
-
Friday, December 13, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2404 -A10945 Serena Joseph v State of Alaska
- -2405 -A11197 Lori S. Welsh v State of Alaska
- -
-
-
Friday, December 6, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2403 -A10948 Trygve Angasan v State of Alaska
- -
-
-
Friday, November 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2402 -A10891 Dessie Ford Miller, IV v State of Alaska
- -
-
-
Friday, November 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2401 -A10957 Kenneth Lewis, Jr. v State of Alaska
- -
-
-
Friday, September 27, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2399 -A10519 Jonathan N. Jarnig v State of Alaska
- -2400 -A11195, A11174, A11193 State of Alaska v Jose Manuel Perez, State of Alaska v Michael Silvera, Michael Silvera v State of Alaska
- -
-
-
Friday, August 16, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2398 -A10657 Richard Francis Hunter v State of Alaska
- -
-
-
Friday, August 2, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2397 -A10864, A11050 Duwaine E. Price v State of Alaska, David George v State of Alaska
- -
-
-
Friday, July 26, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2396 -A10228 Dennis Davison v State of Alaska
- -2395 -A10836 Tracy Hutton v State of Alaska
- -
-
-
Friday, July 19, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2394 -A10886 Michael B. Knipe v State of Alaska
- -
-
-
Friday, July 5, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2383 -A10383 Sven Rofkar v State of Alaska
- -
-
-
Friday, June 28, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2392 -A11103 Bert Flood, Sr. v State of Alaska
- -
-
-
Wednesday, May 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -5948 -A10859 Nicholas R. Worley v State of Alaska
- -
-
-
Friday, April 26, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2391 -A10668 Nicholas Stepovich v State of Alaska
- -
-
-
Friday, April 5, 2013
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2390 -A10661 James Clifton Moore v State of Alaska
- -2389 -A10902 Brett White v State of Alaska
- -
-
-
Friday, March 29, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2388 -A10592 Gene V. Martin, Jr. v State of Alaska
- -
-
-
Friday, March 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2387 -A10763 Sam G. Williams Jr. v State of Alaska
- -
-
-
Friday, February 22, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2386 -A11018 Jose K. Diorec, III v State of Alaska
- -
-
-
Friday, February 8, 2013
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2385 -A10679 Bobbie Lengele v State of Alaska
- -
-
-
Friday, December 14, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2383 -A10795 Angelo Joseph v State of Alaska
- -2384 -A11049 N.G. v Superior Court
- -
-
-
Friday, November 16, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2381 -A10584 Eugene Vent v State of Alaska288 P.3d 752
- -
-
-
Friday, November 2, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2380 -A10655 Yako W. Collins v State of Alaska287 P.3d 791
- -
-
-
Friday, October 19, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2379 -A09623 Byron E. Charles v State of Alaska287 P.3d 779
- -
-
-
Friday, October 12, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2378 -A10787 Dale J. H. Andrews v State of Alaska286 P.3d 780
- -
-
-
Monday, October 1, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2377 -A11352 State of Alaska v Bryan K. Corbett286 P.3d 772
- -
-
-
Friday, September 21, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2376 -A10788 Moses Milligan v State of Alaska286 P.3d 1065
- -
-
-
Friday, September 14, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2374 -A10777 Leigh F. Selig v State of Alaska286 P.3d 767
- -2375 -A10693 Romeo Iyapana v State of Alaska284 P.3d 841
- -2372 -A10569 Dale M. Harvey v State of Alaska285 P.3d 295
- -2373 -A10487 Darin Lee Jones v State of Alaska284 P.3d 853
- -
-
-
Friday, September 7, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2371 -A10775 Rodney A. McCarthy v State of Alaska285 P.3d 285
- -2370 -A10980 Richard Grossman v State of Alaska285 P.3d 281
- -
-
-
Friday, August 17, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2369 -A10665 Forrest Ahvakana v State of Alaska283 P.3d 1284
- -2368 -A10483 Tanya D. Frankson v State of Alaska282 P.3d 1271
- -
-
-
Friday, August 3, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2366 -A10192 Yuri Berezyuk v State of Alaska282 P.3d 386
- -2367 -A10844 State of Alaska v Stanley Walker283 P.3d 668
- -
-
-
Friday, July 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2365 -A10670 Bruce Dickie v State of Alaska282 P.3d 382
- -2364 -A10878 Leon Ruaro v State of Alaska280 P.3d 1233
- -
-
-
Friday, July 20, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2363 -A10764 Talaileva A. Sitagata v State of Alaska280 P.3d 595
- -
-
-
Friday, June 15, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2361 -A10635 Christopher Erin Rogers, Jr. v State of Alaska280 P.3d 582
- -2362 -A10589 Francis Xavier v State of Alaska278 P.3d 902
- -
-
-
Friday, May 11, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2360 -A10611 Ashley Oskolkoff v State of Alaska276 P.3d 490
- -2359 -A10626 Steven Bachmeier v State of Alaska276 P.3d 494
- -
-
-
Friday, May 4, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2358 -A10716 Christopher Erin Rogers, Jr. v State of Alaska275 P.3d 574
- -2357 -A10790 Bobby McKinley v State of Alaska275 P.3d 567
- -2356 -A10398 Leroy Stansberry v State of Alaska275 P.3d 579
- -2355 -A10546 Robert Eberhardt v State of Alaska275 P.3d 560
- -
-
-
Friday, April 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2354 -A10682 Maidie Maillelle v State of Alaska276 P.3d 476
- -2353 -A10561 Ronald K. Christian v State of Alaska276 P.3d 479
- -
-
-
Wednesday, April 25, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -5833 -A10868 Justin Hoeldt v State of Alaska
- -
-
-
Friday, April 13, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2352 -A10744 Derek Radi Diggs v State of Alaska274 P.3d 504
- -2350 -A10556 John Leopold v State of Alaska278 P.3d 286
- -2351 -A10931 Christopher Scholes v State of Alaska274 P.3d 496
- -
-
-
Friday, April 6, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2349 -A09953 Jamon Benson v State of Alaska273 P.3d 1144
- -
-
-
Friday, March 9, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2348 -A10593 Dale Starkey v State of Alaska272 P.3d 347
- -
-
-
Friday, February 24, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2347 -A10574 Richard Pocock v State of Alaska270 P.3d 823
- -2346 -A10564, A10573 Vincent Wilkerson v State of Alaska, State of Alaska v Vincent Wilkerson271 P.3d 471
- -
-
-
Friday, February 17, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2345 -A10385 Michael D. Phillips v State of Alaska271 P.3d 457
- -
-
-
Friday, January 27, 2012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2343 -A10388 James H. M. Luckart v State of Alaska270 P.3d 816
- -2344 -A10757 Beth Kimberly Lawrence v State of Alaska269 P.3d 672
- -
-
-
Friday, January 20, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2342 -A10243 Johnny Johnson v State of Alaska268 P.3d 362
- -
-
-
Friday, January 13, 2012
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2341 -A10803 Karen Everts Wing v State of Alaska268 P.3d 1105
- -
-
-
Friday, December 30, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2340 -A10559 Justin G. Liddicoat v State of Alaska268 P.3d 355
- -
-
-
Friday, December 9, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2339 -A10305 Kira Gray v State of Alaska267 P.3d 667
- -
-
-
Friday, November 25, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2338 -A10231 Kevin Garner v State of Alaska266 P.3d 1045
- -
-
-
Thursday, November 10, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2334 -A10300 State of Alaska v Kim Michael Cook265 P.3d 342
- -2336 -A10607, A10617 Lewis Nels Olson v State of Alaska, State of Alaska v Lewis Nels Olson264 P.3d 600
- -2337 -A10715 Vernon Burnett v State of Alaska264 P.3d 607
- -2335 -A10658 Josiah Darroux v State of Alaska265 P.3d 348
- -
-
-
Friday, November 4, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2332 -A10164 Michael Lawson v State of Alaska264 P.3d 590
- -2333 -A10117 Cynthia Lord v State of Alaska262 P.3d 855
- -
-
-
Friday, October 28, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2329 -A10533 David Rupeiks v State of Alaska263 P.3d 57
- -2331 -A10469 Jason Reandeau v State of Alaska265 P.3d 1045
- -2328 -A10721 Dorothy S. Delay-Wilson v State of Alaska264 P.3d 375
- -
-
-
Friday, October 21, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2327 -A10137 Ginnie Dawson v State of Alaska264 P.3d 851
- -
-
-
Friday, September 16, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2325 -A10244 Lonnie D. Taylor v State of Alaska262 P.3d 232
- -2326 -A10565 Earl Ray v State of Alaska262 P.3d 234
- -
-
-
Friday, September 2, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2324 -A10660 Eugene F. Bottcher v State of Alaska262 P.3d 224
- -2322 -A10488 Jimmy Korkow v State of Alaska258 P.3d 932
- -2323 -A10597 Lehman Olson v State of Alaska262 P.3d 227
- -
-
-
Friday, August 26, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2321 -A10351 Yosbany Moore v State of Alaska262 P.3d 217
- -
-
-
Friday, August 5, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2320 -A10176 Wendell D. Bridge v State of Alaska258 P.3d 923
- -
-
-
Friday, July 29, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2319 -A10484 Earle R. Pierce, Jr. v State of Alaska261 P.3d 428
- -
-
-
Friday, July 1, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2316 -A10380 Darren Allen Shay v State of Alaska258 P.3d 902
- -2318 -A10512 Keen Smith v State of Alaska258 P.3d 913
- -2315 -A10558 Xeuy Sikeo v State of Alaska258 P.3d 906
- -2317 -A10732 State of Alaska v Edwin Swenson259 P.3d 485
- -
-
-
Friday, June 24, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2314 -A10505 Thomas Michael Beattie v State of Alaska258 P.3d 888
- -
-
-
Friday, June 17, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2313 -A10466 Brenda Cleveland v State of Alaska258 P.3d 878
- -
-
-
Friday, June 10, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2312 -A10455 Winona M. Fletcher v State of Alaska258 P.3d 874
- -
-
-
Friday, June 3, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2311 -A10510 Jerry W. Langevin v State of Alaska258 P.3d 866
- -2310 -A10350 Earl C. Bates v State of Alaska258 P.3d 851
- -
-
-
Friday, May 27, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2308 -A10358 Annie Shinault v State of Alaska258 P.3d 848
- -2309 -A10622 Richard Grove v State of Alaska258 P.3d 843
- -2307 -A10418 George M. Romero v State of Alaska258 P.3d 132
- -
-
-
Friday, May 20, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2306 -A10588 Richard D. Pomeroy v State of Alaska258 P.3d 125
- -
-
-
Friday, April 29, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2305 -A10281 Lester W. Booth, Jr. v State of Alaska251 P.3d 369
- -
-
-
Friday, April 8, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2304 -A10311 Stanley Nook v State of Alaska251 P.3d 358
- -2303 -A10346 Byron R. Leu v State of Alaska251 P.3d 363
- -
-
-
Friday, March 25, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2302 -A10566 Patrick Strane v Municipality of Anchorage250 P.3d 546
- -
-
-
Friday, March 18, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2301 -A10550 David J. Scharen v State of Alaska249 P.3d 331
- -
-
-
Friday, March 11, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2299 -A10496 State of Alaska v John Amend250 P.3d 541
- -2300 -A10462 BillyJack Wiglesworth v State of Alaska249 P.3d 321
- -
-
-
Friday, March 4, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2298 -A10316 Cynthia Estes v State of Alaska249 P.3d 313
- -2297 -A10570 Todd E. Richards v State of Alaska249 P.3d 303
- -2296 -A10348 Cress William Carney v State of Alaska249 P.3d 308
- -
-
-
Friday, February 18, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2295 -A10586 Michael S. Weil v State of Alaska249 P.3d 300
- -
-
-
Friday, January 28, 2011
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2294 -A10297 Kevin Anderson v State of Alaska246 P.3d 930
- -
-
-
Friday, January 7, 2011
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2292 -A10283, A10254 State of Alaska v Christopher Lindeman, Christopher Lindeman v State of Alaska
- -2293 -A10444 State of Alaska v Brian Dussault245 P.3d 436
- -2290 -A10160 Derek Sawyer v State of Alaska244 P.3d 1130
- -2291 -A09785 Joseph James v State of Alaska, Dept. of Corrections Parole Board244 P.3d 542
- -
-
-
Thursday, December 23, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2289 -A09775 Billie Rae Deemer v State of Alaska244 P.3d 69
- -2288 -A10378 State of Alaska v Christopher Shetters246 P.3d 338
- -
-
-
Friday, December 17, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2285 -A10269 Michael Silvera v State of Alaska244 P.3d 1138
- -2286 -A10361 Merle G. Wilson v State of Alaska244 P.3d 535
- -2287 -A10741 Douglas Lamkin v State of Alaska244 P.3d 540
- -
-
-
Friday, December 10, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2284 -A09296 Justin Starkweather v State of Alaska244 P.3d 522
- -
-
-
Friday, December 3, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2283 -A10433 Steven Chase v State of Alaska243 P.3d 1014
- -2282 -A10384 Kristopher William Felber v State of Alaska243 P.3d 1007
- -
-
-
Friday, November 5, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2281 -A10107 Duane Gene Ferguson v State of Alaska242 P.3d 1042
- -
-
-
Friday, October 8, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2280 -A10552, A10578 State of Alaska v Lee J. Henry, State of Alaska v Matthew L. Fulton240 P.3d 846
- -2278 -A10236 Steven Cleveland v State of Alaska241 P.3d 504
- -
-
-
Friday, September 24, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2277 -A10312 Michael D. Howard v State of Alaska239 P.3d 426
- -
-
-
Friday, September 17, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2276 -A10234 Estin Borchgrevink v State of Alaska239 P.3d 410
- -
-
-
Friday, September 3, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2275 -A10177 Harrietta Ulak v State of Alaska238 P.3d 1254
- -
-
-
Friday, July 30, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2274 -A09997 Zena M. Andrew v State of Alaska237 P.3d 1027
- -2273 -A09490, A09470 State of Alaska v David S. Forster, David S. Forster v State of Alaska
- -
-
-
Friday, July 23, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2270 -A10112 Bradley D. Proctor v State of Alaska236 P.3d 375
- -2271 -A10521, A10405 Charles Lee Davis v State of Alaska, Charles Lee Davis v State of Alaska
- -2272 -A10709 Eugene Phelps v State of Alaska236 P.3d 381
- -
-
-
Friday, June 18, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2268 -A10313 Lorenzo Christopher Carter v State of Alaska235 P.3d 221
- -2269 -A09973 Steve Claudy LaPitre v State of Alaska233 P.3d 1125
- -
-
-
Friday, June 11, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2267 -A10468 B.L. v State of Alaska233 P.3d 1118
- -2266 -A10202 Marvin L. Charles v State of Alaska232 P.3d 739
- -
-
-
Friday, May 28, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2265 -A09986 Michael Evans v State of Alaska231 P.3d 918
- -
-
-
Friday, May 21, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2263 -A09991 Shawn W. Rogers v State of Alaska232 P.3d 1226
- -2264 -A10170 Marteshia Clark v State of Alaska231 P.3d 366
- -
-
-
Friday, April 30, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2262 -A10322 State of Alaska v Allen Siftsoff, Jr.229 P.3d 214
- -2260 -A10091 Derrick Alexie v State of Alaska229 P.3d 217
- -
-
-
Friday, April 23, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2258 -A10007 Gregory Lestenkof v State of Alaska229 P.3d 182
- -2259 -A09887 John Lee Vann v State of Alaska229 P.3d 197
- -
-
-
Friday, April 2, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2257 -A10278 John N. Falcone v State of Alaska227 P.3d 469
- -
-
-
Friday, March 26, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2256 -A10364 Clarence Solomon v State of Alaska227 P.3d 461
- -
-
-
Friday, February 12, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2255 -A10323 Newton Lindoff v State of Alaska224 P.3d 152
- -
-
-
Friday, February 5, 2010
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2254 -A10426 Joshua S. Twogood v State of Alaska223 P.3d 641
- -2253 -A10190 Mechele K. Linehan v State of Alaska224 P.3d 126
- -
-
-
Friday, January 22, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2252 -A10150 Dwayne West v State of Alaska223 P.3d 634
- -
-
-
Friday, January 15, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2251 -A10354 David W. Guthrie II v State of Alaska222 P.3d 890
- -
-
-
Friday, January 8, 2010
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2250 -A10120 Christopher Fallon v State of Alaska221 P.3d 1016
- -
-
-
Friday, December 18, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2249 -A10171 Peter Ambrose v State of Alaska221 P.3d 364
- -
-
-
Friday, December 11, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2246 -A10334 Barret J. Brown v State of Alaska221 P.3d 20
- -2248 -A10074 Frank Moses Tegoseak v State of Alaska221 P.3d 345
- -2247 -A09335 Edward A. Wooley v State of Alaska221 P.3d 12
- -
-
-
Friday, November 20, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2244 -A09778 Barry L. Lapp v State of Alaska220 P.3d 534
- -
-
-
Tuesday, November 17, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2245 -A10606 Airjetis Espinal v State of Alaska220 P.3d 242
- -
-
-
Friday, October 2, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2243 -A10200 Nolan P. Moore v State of Alaska218 P.3d 303
- -
-
-
Friday, September 25, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2242 -A09855 Christopher Cronce v State of Alaska216 P.3d 568
- -
-
-
Friday, September 18, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2240 -A09976 John T. Ferrick v State of Alaska217 P.3d 418
- -2238 -A10079 Joseph Walton Cofey Jr. v State of Alaska216 P.3d 564
- -2235 -A10268 State of Alaska v David Hamilton216 P.3d 547
- -2239 -A10142 Nekida Jones v State of Alaska215 P.3d 1091
- -2237 -A09972 Kristian Skjervem v State of Alaska215 P.3d 1101
- -2236 -A09769 John Rantala v State of Alaska216 P.3d 550
- -
-
-
Friday, September 11, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2234 -A10009 Bobby Lee McKinley v State of Alaska215 P.3d 378
- -
-
-
Friday, September 4, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2232 -A10006 Richard Deweese v State of Alaska215 P.3d 1087
- -2233 -A09748 Michael Rockwell v State of Alaska215 P.3d 369
- -2231 -A08799 Ty Douglas v State of Alaska215 P.3d 357
- -
-
-
Friday, August 21, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2230 -A10115 Jeremy V. Williams v State of Alaska214 P.3d 391
- -
-
-
Friday, August 14, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2229 -A10140 Micheal McLaughlin v State of Alaska214 P.3d 386
- -
-
-
Friday, August 7, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2228 -A09942 Patrick Shorty v State of Alaska214 P.3d 374
- -
-
-
Friday, July 17, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2225 -A09961 State of Alaska v Ezial Avery211 P.3d 1154
- -2226 -A09869 John B Phillips v State of Alaska211 P.3d 1148
- -
-
-
Friday, July 10, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2224 -A10059 John V. Hanson v State of Alaska210 P.3d 1240
- -
-
-
Friday, June 26, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2220 -A10058 David T. Boyd v State of Alaska210 P.3d 1229
- -2221 -A10083 Jason M. Thompson v State of Alaska210 P.3d 1233
- -2223 -A10101 Timothy Alex v State of Alaska210 P.3d 1225
- -2222 -A09447 James Howard v State of Alaska209 P.3d 1044
- -
-
-
Friday, June 12, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2219 -A09834 Jimmie Dale v State of Alaska209 P.3d 1038
- -2218 -A10030 Michael E. Boles v State of Alaska210 P.3d 454
- -
-
-
Friday, May 22, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2216 -A10005 Christopher Worden v State of Alaska213 P.3d 144
- -2217 -A09786 Allen Wilson v State of Alaska207 P.3d 565
- -2215 -A09787 Andrew C. Moffitt v State of Alaska207 P.3d 593
- -
-
-
Friday, May 8, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2214 -A09852 Raymond J Jimmy v State of Alaska206 P.3d 750
- -
-
-
Friday, April 24, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2213 -A10255 Steven Bennett v Municipality of Anchorage205 P.3d 1113
- -
-
-
Friday, April 10, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2212 -A09720 Robert D. Gibson, III v State of Alaska205 P.3d 352
- -
-
-
Friday, April 3, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2210 -A09552 Izaz Khan v State of Alaska204 P.3d 1036
- -2211 -A09844 Donald E. Brand v State of Alaska204 P.3d 383
- -
-
-
Friday, March 27, 2009
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2209 -A10010 Claude Wall v State of Alaska203 P.3d 1170
- -
-
-
Friday, January 16, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2208 -A10241 State of Alaska v Brian Galbraith199 P.3d 1216
- -2207 -A09700 Byron M. Kalmakoff v State of Alaska199 P.3d 1188
- -2206 -A09422 Andrew J Dayton v State of Alaska198 P.3d 1189
- -2205 -A08890 Travis Clark v State of Alaska199 P.3d 1203
- -
-
-
Friday, January 9, 2009
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2203 -A09742, A09981 James R. Malutin v State of Alaska, James Malutin v State of Alaska198 P.3d 1177
- -2204 -A09984 Charles E. Newsom v State of Alaska199 P.3d 1181
- -
-
-
Wednesday, December 24, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2202 -A09721 Frank Henry Marshall v State of Alaska198 P.3d 567
- -
-
-
Friday, December 19, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2199 -A09729 State of Alaska v David Scott Campbell198 P.3d 1170
- -2201 -A09418 Bruce Tice v State of Alaska199 P.3d 1175
- -2200 -A09968 James Triplett v State of Alaska199 P.3d 1179
- -
-
-
Friday, December 5, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2198 -A09634 State of Alaska v Rachelle A. Waterman196 P.3d 1115
- -
-
-
Friday, November 28, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2196 -A09725 Lance D. Hinson v State of Alaska199 P.3d 1166
- -2197 -A09958 Max Schwab v State of Alaska198 P.3d 566
- -2195 -A09877 Timothy Wayne Bradley v State of Alaska197 P.3d 209
- -
-
-
Friday, November 21, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2194 -A09881 Joshua S. Twogood v State of Alaska196 P.3d 1109
- -2193 -A09934 Don G. Muller v State of Alaska196 P.3d 815
- -
-
-
Friday, November 14, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2192 -A09655 Rolando Vizcarra-Medina v State of Alaska195 P.3d 1095
- -
-
-
Friday, November 7, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2191 -A09867 Dekeitric Lewis v State of Alaska195 P.3d 622
- -
-
-
Friday, October 31, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2189 -A09682 State of Alaska v Jeron Batts195 P.3d 144
- -2190 -A09548 Robert Harris, Jr. v State of Alaska195 P.3d 161
- -
-
-
Thursday, October 16, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2188 -A09950 State of Alaska, Department of Corrections v Eugene Bourdon193 P.3d 1209
- -2187 -A10026 Clifford Haywood v State of Alaska193 P.3d 1203
- -
-
-
Friday, October 10, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2186 -A10214 Raymond P. Juarez v State of Alaska193 P.3d 773
- -
-
-
Friday, September 26, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2185 -A09890 Daniel Hoekzema v State of Alaska193 P.3d 765
- -
-
-
Friday, September 19, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2184 -A09513 James Harmon v State of Alaska193 P.3d 1184
- -
-
-
Friday, September 12, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2183 -A10035 Michael Whiting v State of Alaska191 P.3d 1016
- -
-
-
Friday, September 5, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2182 -A09873 Emanual L. Itta v State of Alaska191 P.3d 1013
- -
-
-
Friday, August 22, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2180 -A09949 Richard Mattox v State of Alaska191 P.3d 148
- -2181 -A09732 Kevin M. Stock v State of Alaska191 P.3d 153
- -
-
-
Friday, August 15, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2179 -A10073 Eric Holden v Dept of Public Safety190 P.3d 725
- -
-
-
Friday, July 25, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2178 -A09800 Michael J. Johnson v State of Alaska188 P.3d 700
- -2177 -A09717 Christopher Hewitt v State of Alaska188 P.3d 697
- -
-
-
Friday, July 18, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2176 -A09494, A09493, A09836 State of Alaska v Richard Callahan, State of Alaska v Richard E. Lundy, State of Alaska v Donald Chase
- -
-
-
Thursday, July 3, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2175 -A09681 John P. Smith II v State of Alaska187 P.3d 511
- -2174 -A09393, A09363, A09394 Arne J. Sorensen v State of Alaska & Greenpeace, Inc., State of Alaska v Greenpeace, Inc. and Arne J. Sorensen, Greenpeace, Inc. v State of Alaska & Arne J. Sorenson
- -
-
-
Friday, June 20, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2173 -A09570 Ricardo Molina v State of Alaska186 P.3d 28
- -
-
-
Friday, June 6, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2171 -A09763 Ruple Marx Smith v State of Alaska185 P.3d 767
- -2172 -A09736 Melvin Oyoumick v State of Alaska185 P.3d 771
- -
-
-
Monday, May 19, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -12345 -A05555 Sample Party v Municipality of Anchorage10 P3d 10
- -
-
-
Friday, May 16, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2169 -A09802 Gregory Osborne v State of Alaska182 P.3d 1155
- -2170 -A09551 Charles Collins v State of Alaska182 P.3d 1159
- -
-
-
Friday, May 9, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2168 -A08868 John N. Hunter v State of Alaska182 P.3d 1146
- -
-
-
Friday, May 2, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2165 -A09480 Fred A. Baker v State of Alaska182 P.3d 655
- -2166 -A09733 State of Alaska v Nick L. Smith182 P.3d 651
- -2164 -A09711 Craig Nicholas Berumen II v State of Alaska182 P.3d 635
- -2167 -A09618 Duley E. Lyons v State of Alaska182 P.3d 649
- -2163 -A10180 Michael Phillips v State of Alaska183 P.3d 493
- -2162 -A10125 I.J. v State of Alaska182 P.3d 643
- -
-
-
Friday, April 25, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2161 -A08942 Joseph Erickson v State of Alaska181 P.3d 1117
- -
-
-
Friday, April 18, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2156 -A09686 Alan Burton v State of Alaska180 P.3d 964
- -2157 -A09529 Susan S. Brown v State of Alaska182 P.3d 624
- -2159 -A09838 Rex Savely v State of Alaska180 P.3d 961
- -2160 -A09892 Sonny Fungchenpen v State of Alaska181 P.3d 1115
- -2158 -A10095 Jay Dominguez v State of Alaska181 P.3d 1111
- -
-
-
Friday, April 4, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2155 -A09572 Tariek Oviuk v State of Alaska180 P.3d 388
- -
-
-
Friday, March 28, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2153 -A09680 Hakim Ivie v State of Alaska179 P.3d 947
- -2154 -A09676 Paul A. Ackerman v State of Alaska179 P.3d 951
- -
-
-
Friday, March 21, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2152 -A10032 Michelle Gates v State of Alaska178 P.3d 1173
- -
-
-
Friday, March 14, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2151 -A09702 Russell Duncan v State of Alaska178 P.3d 467
- -
-
-
Friday, February 22, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2150 -A09461 Jose G. Manrique v State of Alaska177 P.3d 1188
- -
-
-
Friday, February 15, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2148 -A09780 Michael S Hollstein v State of Alaska175 P.3d 1288
- -
-
-
Friday, February 8, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2147 -A09639, A09619 State of Alaska v Vui Tsen, Vui Gui Tsen v State of Alaska
- -
-
-
Friday, February 1, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2146 -A09444 Frank R. Johnson v State of Alaska175 P.3d 674
- -
-
-
Friday, January 25, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2145 -A08350 Jeffrey Gottlieb v State of Alaska175 P.3d 664
- -
-
-
Friday, January 18, 2008
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2141 -A09715 Allen Lau v State of Alaska175 P.3d 659
- -2143 -A09691 Matthew M. Moore v State of Alaska174 P.3d 770
- -2142 -A09501, A09502 Nathaniel Vickers v State of Alaska, Nathaniel Vickers v State of Alaska175 P.3d 1280
- -2144 -A09615 Desmond A. Tuttle v State of Alaska175 P.3d 60
- -
-
-
Friday, January 11, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2140 -A09819 W.S., a minor v State of Alaska174 P.3d 256
- -
-
-
Friday, January 4, 2008
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2139 -A09600 Cordell Tritt v State of Alaska173 P.3d 1017
- -
-
-
Friday, December 28, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2138 -A09971 Micheal L. McLaughlin v State of Alaska173 P.3d 1014
- -2136 -A09136 Chester L. Love v State of Alaska173 P.3d 433
- -2137 -A09091 Shane Harapat v State of Alaska174 P.3d 249
- -
-
-
Friday, December 21, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2134 -A09332 Jeffrey Kolody v State of Alaska172 P.3d 842
- -2135 -A09750 Curt Friedmann v State of Alaska172 P.3d 831
- -2133 -A09665 Joshua Lambert v State of Alaska172 P.3d 838
- -
-
-
Friday, December 7, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2130 -A09703 Sarah J. Coffman v State of Alaska172 P.3d 804
- -2129 -A09797 Eric Holden v State of Alaska172 P.3d 815
- -2131 -A09790 Terrance A. Garland v State of Alaska172 P.3d 827
- -2132 -A09270 Arelia Gomez v State of Alaska172 P.3d 824
- -2128 -A09817 Tyler Heavyrunner v State of Alaska172 P.3d 819
- -
-
-
Friday, November 30, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2127 -A08128 Stephen W. Grandstaff v State of Alaska171 P.3d 1176
- -2125 -A09617 Leanne Wacker v State of Alaska171 P.3d 1164
- -2126 -A09553 Thomas E. Klemz v State of Alaska171 P.3d 1169
- -
-
-
Friday, November 16, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2123 -A09611 Adrian Ramon Ortiz v State of Alaska173 P.3d 430
- -2124 -A09621 State of Alaska v Joseph W. Kameroff171 P.3d 1160
- -
-
-
Friday, October 12, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2121 -A09580 Krystal Allen v Municipality of Anchorage168 P.3d 890
- -
-
-
Friday, October 5, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2120 -A09609, A09350 State of Alaska v Warren Eide, Warren Eide v State of Alaska
- -
-
-
Friday, September 7, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2119 -A09304 Frank Mooney v State of Alaska167 P.3d 81
- -
-
-
Friday, August 31, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2117 -A08997 Ty Douglas v State of Alaska166 P.3d 61
- -2118 -A09749 Valerie Sweezey v State of Alaska167 P.3d 79
- -
-
-
Friday, August 17, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2116 -A09739 Ben Latham v Municipality of Anchorage165 P.3d 663
- -
-
-
Friday, August 10, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2114 -A09428 Andrew Abyo v State of Alaska166 P.3d 55
- -2115 -A08716 Marvin L. Roberts v State of Alaska164 P.3d 664
- -
-
-
Friday, August 3, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2113 -A08064 Joseph L. Anderson v State of Alaska163 P.3d 1000
- -
-
-
Friday, July 27, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2112 -A08905 State of Alaska v Kevin Pease163 P.3d 985
- -
-
-
Friday, July 20, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2111 -A09633 David Middleton v State of Alaska164 P.3d 659
- -
-
-
Friday, July 13, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2110 -A09579 Dennis R. Morgan v State of Alaska162 P.3d 636
- -
-
-
Friday, July 6, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2109 -A08399 William Osborne v State of Alaska163 P.3d 973
- -
-
-
Friday, June 29, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2107 -A09719 William C. Samples v Municipality of Anchorage163 P.3d 967
- -2108 -A09024 Komson I. Spencer v State of Alaska164 P.3d 649
- -
-
-
Friday, June 15, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2106 -A08765 Jamon Benson v State of Alaska160 P.3d 161
- -
-
-
Friday, June 8, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2105 -A09496 State of Alaska v Jack L. Beltz160 P.3d 154
- -
-
-
Friday, May 25, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2104 -A09286 Douglas Artemie v State of Alaska158 P.3d 860
- -2103 -A09610 Matthew S. Hodges v State of Alaska158 P.3d 864
- -
-
-
Friday, May 18, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2099 -A09535 James Bush v State of Alaska157 P.3d 1059
- -2100 -A09515 Duane A. Linscott v State of Alaska157 P.3d 1056
- -2102 -A09425 William Peter Pastos v State of Alaska157 P.3d 1066
- -2101 -A09282 Nick N. Charliaga, Jr. v State of Alaska157 P.3d 1053
- -
-
-
Friday, May 4, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2097 -A09018 Talalelei Edwards Jr v State of Alaska158 P.3d 847
- -2095 -A08994 Jimmy Lampley v Municipality of Anchorage159 P.3d 515
- -2096 -A09839 Joseph Harvey v Mark Antrim, Department of Corrections, et al.160 P.3d 673
- -
-
-
Friday, April 20, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2094 -A09791 Fred A. Baker v State of Alaska158 P.3d 836
- -
-
-
Friday, April 6, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2093 -A09212 Ross L. Dow v State of Alaska155 P.3d 352
- -
-
-
Friday, March 23, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2092 -A09429 David G. Gladden v State of Alaska153 P.3d 1028
- -
-
-
Friday, March 16, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2091 -A09343 Albert L. Allen v State of Alaska153 P.3d 1019
- -2090 -A09534 Saul A. Lockuk v State of Alaska153 P.3d 1012
- -
-
-
Friday, March 9, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2088 -A09491 Douglas LeRoy Valentine v State of Alaska155 P.3d 331
- -2087 -A09426 Jeremy Cooper v State of Alaska153 P.3d 371
- -2086 -A08984 Edward H. Active v State of Alaska153 P.3d 355
- -2089 -A09574 Kirk D. Eaklor v State of Alaska153 P.3d 367
- -
-
-
Friday, March 2, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2085 -A09011 Maureen Malloy v State of Alaska153 P.3d 1003
- -
-
-
Friday, February 2, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2083 -A09189 Timothy J. LaBrake v State of Alaska152 P.3d 474
- -2084 -A09395 Joseph A. Matthew v State of Alaska152 P.3d 469
- -
-
-
Friday, January 26, 2007
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2081 -A09402 William Woodbury v State of Alaska151 P.3d 528
- -2082 -A09390 Lawrence Moberg v Municipality of Anchorage152 P.3d 1170
- -
-
-
Friday, January 19, 2007
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2080 -A09227 Wayne Huntington v State of Alaska151 P.3d 523
- -
-
-
Friday, December 22, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2079 -A09004 Steve Billum v State of Alaska151 P.3d 507
- -2077 -A08979 James Marunich v State of Alaska151 P.3d 510
- -
-
-
Friday, December 8, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2076 -A09458 James Surrells v State of Alaska151 P.3d 483
- -2075 -A09148 State of Alaska v Ronnie Moreno151 P.3d 480
- -
-
-
Friday, November 24, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2074 -A09139 Thomas Williams v State of Alaska151 P.3d 460
- -2073 -A09364 Anthony Zemljich v Municipality of Anchorage151 P.3d 471
- -
-
-
Friday, November 17, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2072 -A09081 James Garhart v State of Alaska147 P.3d 746
- -
-
-
Wednesday, November 15, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -5135 -A09348 Petro Basargin v State of Alaska
- -
-
-
Friday, November 3, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2071 -A08918 State of Alaska v James P. Rivers146 P.3d 999
- -
-
-
Friday, October 27, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2070 -A09025, A09037 Troy Smart v State of Alaska, Jayme B. Sobocienski v State of Alaska146 P.3d 15
- -
-
-
Friday, October 20, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2068 -A09003, A09005 Lars N. Anderson v State of Alaska, Lana W. Anderson v State of Alaska145 P.3d 617
- -2069 -A09484 Michael T. Miller v State of Alaska145 P.3d 627
- -
-
-
Friday, October 13, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2067 -A08939 Claude J. Joseph v State of Alaska145 P.3d 595
- -2064 -A09033 Todd Porterfield v State of Alaska145 P.3d 613
- -2065 -A09334 William R. Netling v State of Alaska145 P.3d 609
- -2066 -A09437 Christopher Hall v State of Alaska145 P.3d 605
- -
-
-
Friday, October 6, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2063 -A09268 Lucas W. Bessette v State of Alaska145 P.3d 592
- -
-
-
Friday, September 15, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2062 -A08914 State of Alaska v Michele Dague143 P.3d 988
- -
-
-
Friday, September 1, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2061 -A09034 Laura A. Blank v State of Alaska142 P.3d 1210
- -
-
-
Friday, August 25, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2060 -A09054 Steven Cleveland v State of Alaska143 P.3d 977
- -
-
-
Friday, August 11, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2059 -A08760 Murville L. Lampkin v State of Alaska141 P.3d 362
- -
-
-
Friday, August 4, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2058 -A08977 State of Alaska v Charles E. Herrmann140 P.3d 895
- -
-
-
Friday, July 28, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2057 -A09109 Antonio Williams v State of Alaska139 P.3d 1282
- -2056 -A08639 Frederick Morgan, III v State of Alaska139 P.3d 1272
- -
-
-
Friday, July 21, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2055 -A08747 Bernice Slwooko v State of Alaska139 P.3d 593
- -
-
-
Friday, July 14, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2054 -A09404 Stephen C. Collier v Municipality of Anchorage138 P.3d 719
- -
-
-
Friday, July 7, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2052 -A08798 State of Alaska v Clayton Gottschalk138 P.3d 1170
- -
-
-
Friday, June 23, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2051 -A09391, A09134 Robert Stevens v Matanuska-Susitna Borough, Robert Stevens, Jr. v Mat-Su Borough142 P.3d 222
- -2050 -A09233, A09234 Ralph K Winterrowd v Municipality of Anchorage, Ralph K Winterrowd v Municipality of Anchorage139 P.3d 590
- -
-
-
Monday, May 15, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -6013 -A08232 Stanley Vaska v State of Alaska
- -
-
-
Friday, May 12, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2049 -A09307 Len W. Stickman-Sam v State of Alaska135 P.3d 1041
- -
-
-
Friday, April 28, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2048 -A08965, A08805 John R. Walsh v State of Alaska, John R. Walsh v State of Alaska
- -
-
-
Friday, April 21, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2046 -A08818 Darrell L. Peterson v State of Alaska133 P.3d 730
- -2045 -A09137 Rayme D. Stevens v State of Alaska135 P.3d 688
- -
-
-
Friday, April 14, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2043 -A08835 Cynthia Cooper v District Court & Daniel R. Cooper, Jr.133 P.3d 692
- -2042 -A08416 Daniel Davis v State of Alaska133 P.3d 719
- -2044 -A08375 Everett Bryant v State of Alaska133 P.3d 690
- -
-
-
Friday, April 7, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2041 -A08739 Douglas Myers v Municipality of Anchorage132 P.3d 1176
- -2040 -A09292 Kevin L. Parrish v State of Alaska132 P.3d 1172
- -
-
-
Friday, March 31, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2039 -A08991 David Tyler v State of Alaska133 P.3d 686
- -
-
-
Friday, March 10, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2036 -A09031 State of Alaska v Lawrence Avery130 P.3d 959
- -2038 -A09020 Darrin Hotrum v State of Alaska130 P.3d 965
- -2035 -A08808 Tierice Knox v State of Alaska130 P.3d 971
- -2037 -A08754, A08773 Bruce Scott McQuade v State of Alaska, Forrest U. Johnston v State of Alaska130 P.3d 973
- -
-
-
Friday, March 3, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2034 -A09021 Y.J. v State of Alaska130 P.3d 954
- -
-
-
Friday, February 24, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2033 -A09027 Daniel J. Ornelas v State of Alaska129 P.3d 934
- -
-
-
Friday, February 10, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2032 -A08768 Gabriel Serradell v State of Alaska129 P.3d 461
- -
-
-
Friday, February 3, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2031 -A08872, A08888 State of Alaska v Scott Stafford, State of Alaska v Jeffrey L. Castrey129 P.3d 927
- -2030 -A08851 State of Alaska v Antonio Garrison128 P.3d 741
- -
-
-
Friday, January 27, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2028 -A09082 Andrew Case v Municipality of Anchorage128 P.3d 193
- -2029 -A08498 Jason L. Carlson v State of Alaska128 P.3d 197
- -
-
-
Friday, January 20, 2006
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2027 -A08442 Ben Noyakuk v State of Alaska127 P.3d 856
- -
-
-
Friday, January 13, 2006
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2024 -A08839 Timothy Alex v State of Alaska127 P.3d 847
- -2023 -A08793 Illya D. Brown v State of Alaska127 P.3d 837
- -2025 -A08824 Rudy P. One v State of Alaska127 P.3d 853
- -2026 -A09035 Alice Jackson v State of Alaska127 P.3d P.3d 835
- -
-
-
Friday, December 16, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2022 -A08946 Norman Vandergriff v State of Alaska125 P.3d 360
- -2021 -A08778 State of Alaska v Gavis Thomas133 P.3d 684
- -
-
-
Friday, November 25, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2020 -A08638 Jonathan L. Anderson v State of Alaska123 P.3d 1110
- -
-
-
Friday, November 18, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2019 -A08740 Dominic Allen v State of Alaska123 P.3d 1106
- -
-
-
Thursday, November 10, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2017 -A08698 Erick David v State of Alaska123 P.3d 1099
- -2018 -A08950 Ajani Snelling v State of Alaska123 P.3d 1096
- -
-
-
Friday, November 4, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2016 -A08584 Matthew M. Moore v State of Alaska123 P.3d 1081
- -
-
-
Friday, October 14, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2015 -A08911 State of Alaska v Byron Kalmakoff122 P.3d 224
- -
-
-
Friday, October 7, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2012 -A08886 Mike Simon v State of Alaska
- -2014 -A08859 Sugar Greist v State of Alaska121 P.3d 811
- -2013 -A08653 State of Alaska v Andrew D. Gonzales121 P.3d 822
- -
-
-
Friday, September 30, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2011 -A08743 Roy Erwin McDole v State of Alaska121 P3d 166
- -
-
-
Friday, September 23, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2010 -A08689 William D. Grossman v State of Alaska120 P.3d 1085
- -
-
-
Friday, September 16, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2009 -A08791 Franklin Dayton, Jr. v State of Alaska120 P.3d 1073
- -
-
-
Friday, September 9, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2008 -A08666 Lawrence Dewayne Ward v State of Alaska120 P.3d 204
- -
-
-
Friday, September 2, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2006 -A08697, A08696 John E. Moore v State of Alaska, John E. Moore v State of Alaska
- -
-
-
Friday, August 26, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2004 -A08867 Bradley P. Grasser v State of Alaska119 P.3d 1016
- -
-
-
Friday, August 19, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2003 -A08721 Frederick L. Ned, Jr. v State of Alaska119 P.3d 438
- -
-
-
Friday, August 12, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -2001 -A08753 Gary L. Grohs v State of Alaska118 P.3d 1080
- -2000 -A09291 Lde Crane v State of Alaska118 P.3d 1084
- -
-
-
Friday, August 5, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -2002 -A09281 Kevin T. Swarner v State of Alaska118 P.3d 24
- -
-
-
Friday, July 29, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1998 -A08998 Gilbert T. Edmonds v State of Alaska118 P.3d 17
- -1997 -A08819 Jason Lee v State of Alaska118 P.3d 22
- -1999 -A08733 Spike Milligrock v State of Alaska118 P.3d 11
- -
-
-
Friday, July 22, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1996 -A08687 Jeremiah Jay Haag v State of Alaska117 P.3d 775
- -1994 -A08925 Ronald Peltola v State of Alaska117 P.3d 771
- -1993 -A08756 State of Alaska v Barry Anthony Anderson117 P.3d 762
- -1995 -A08877 Johnny Degrate v State of Alaska117 P.3d 769
- -
-
-
Friday, July 8, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1992 -A08712 James Kelly v State of Alaska116 P.3d 602
- -
-
-
Friday, July 1, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1991 -A08575, A08556 State of Alaska v Marshall R. Howell, Marshall R. Howell v State of Alaska
- -
-
-
Friday, June 24, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1988 -A08708 Mark Pilant v State of Alaska
- -1989 -A08742 Noel Leo Roussel v State of Alaska
- -
-
-
Friday, June 17, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1987 -A08664, A08663 Adrian Paige v State of Alaska, Adrian Paige v State of Alaska115 P.3d 1244
- -
-
-
Friday, June 3, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1985 -A08720 Samuel Snyder v State of Alaska113 P.3d 683
- -1986 -A08785 State of Alaska v Neil M. Cameron113 P.ed 687
- -
-
-
Friday, May 27, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1984 -A08864 State of Alaska v David Koen, Sr.113 P.3d 675
- -
-
-
Friday, May 13, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1983 -A08674 Scott Clark v Municipality of Anchorage112 P.3d 676
- -
-
-
Friday, April 29, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1982 -A08691, A08725, A08726 State of Alaska v Glenn D. Morgan, Jr., State of Alaska v Athena Komakhuk, State of Alaska v Kirk J. Peterson111 P.3d 360
- -
-
-
Friday, April 22, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1981 -A08841 Kemone Rodgers v State of Alaska111 P.3d 358
- -
-
-
Friday, April 15, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1980 -A07882 Fred A. Baker v State of Alaska110 P.3d 996
- -1977 -A08651 William Ratliff v State of Alaska110 P.3d 982
- -1979 -A08710 David Gary Gladden v State of Alaska110 P.3d 1006
- -
-
-
Friday, March 11, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1975 -A08583 State of Alaska v Allen Savo108 P.3d 903
- -
-
-
Friday, February 18, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1974 -A08570 Ronald J. McBath v State of Alaska108 P.3d 241
- -
-
-
Friday, February 11, 2005
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1973 -A08112 Leonard P Hurd v State of Alaska107 P.3d 314
- -1970 -A08567 Joel M. Kenison v State of Alaska107 P.3d 335
- -1971 -A08329 Vannaphone Soundara v State of Alaska107 P.3d 290
- -1969 -A08516 Il Seung Yang v State of Alaska107 P.3d 302
- -
-
-
Friday, February 4, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1968 -A08190 Evan Sergie v State of Alaska105 P.3d 1150
- -
-
-
Friday, January 28, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1967 -A08560 Peter Nease, Jr., v State of Alaska105 P.3d 1145
- -
-
-
Friday, January 7, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1965 -A08383 Frank Mooney v State of Alaska105 P.3d 149
- -
-
-
Wednesday, January 5, 2005
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1966 -A08953 State of Alaska v Stephanie Gibbs105 P.3d 145
- -
-
-
Friday, December 17, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1964 -A08573 John Q. Adams v State of Alaska103 P,3d 908
- -
-
-
Friday, December 10, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1963 -A08661, A08645 Ralph N. Wells v State of Alaska, Ralph N. Wells v State of Alaska102 P.3d 972
- -
-
-
Friday, December 3, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1961 -A08164 Mark D. Nason v State of Alaska102 P.3d 966
- -1962 -A08673 Mark D. Nason v State of Alaska102 P.3d 962
- -
-
-
Friday, November 26, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1959 -A08701 Damyan Riggins v State of Alaska101 P.3d 1060
- -1960 -A08491 Jarsis Jamar Howard v State of Alaska101 P.3d 1054
- -1958 -A08471 John C. Knutsen v State of Alaska101 P.3d 1065
- -
-
-
Friday, November 19, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1957 -A08541 Jerry D. Cogdill v State of Alaska101 P.3d 632
- -
-
-
Friday, November 12, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1955 -A08555 Steven Reichel v State of Alaska101 P.3d 197
- -1956 -A08549 J. Lee Way v State of Alaska101 P.3d 203
- -
-
-
Friday, November 5, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1954 -A08633 J. Lee Way v State of Alaska100 P.3d 902
- -1953 -A08677 Kim W. Dunn v Municipality of Anchorage100 P.3d 905
- -
-
-
Friday, October 29, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1952 -A08617 Philip Sheridan v Municipality of Anchorage100 P.3d 898
- -
-
-
Friday, October 22, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1951 -A08459 Phillip A. Crawford v State of Alaska100 P.3d 440
- -
-
-
Friday, October 15, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1950 -A08496 Larry L. Wholecheese v State of Alaska100 P.3d 14
- -
-
-
Friday, August 27, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1949 -A08462 State of Alaska v Leo R. Crocker, Jr.97 P.3d 93
- -1948 -A08579 Kevin H. Frank v State of Alaska97 P.3d 86
- -
-
-
Friday, August 20, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1946 -A08386 Andy Ritter v State of Alaska97 P.3 73
- -1947 -A08724 Darren L. Robbins v State of Alaska97 P.3d 84
- -
-
-
Friday, August 6, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1944 -A08601 State of Alaska v John B. Short96 P.3d 526
- -1945 -A08558 Robert W. Gross v State of Alaska96 P.3d 525
- -
-
-
Friday, July 30, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1942 -A08452 Christian McGee v State of Alaska95 P.3d 945
- -1943 -A08597 Daniel Brodigan v State of Alaska95 P.3d 940
- -
-
-
Friday, July 23, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1941 -A08582 State of Alaska v Brian Simpson95 P.3d 539
- -
-
-
Friday, June 25, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1940 -A07446 Arthur Albers v State of Alaska93 P.3d 473
- -
-
-
Friday, June 18, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1938 -A08553 Patrick G. Herrin v State of Alaska93 P.3d 477
- -1937 -A08528 James T. Goldsbury v State of Alaska93 P.3d 468
- -1939 -A08533 Jeremy A. Ridlington v State of Alaska93 P.3d 471
- -
-
-
Friday, May 28, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1934 -A08223 Steven Cleveland v State of Alaska91 P.3d 965
- -1935 -A08527 Gilbert Valencia v State of Alaska91 P.3d 983
- -1936 -A08421 Jeffrey Anderson v State of Alaska91 P.3d 984
- -
-
-
Friday, May 21, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1933 -A07813 Clarence Sipary v State of Alaska91 P.3d 296
- -
-
-
Friday, May 14, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1931 -A08167 Michael V. Jeffries v State of Alaska90 P.3d 185
- -1932 -A08114 David Lee Parker v State of Alaska90 P.3d 194
- -
-
-
Friday, April 30, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1929 -A08603 Sonja Alvarez v Ketchikan Gateway Borough91 P.3d 289
- -1930 -A08378 Stanley Simeon v State of Alaska90 P.3d 181
- -1928 -A08723 Horace Timothy, Jr. v State of Alaska90 P.3d 177
- -
-
-
Friday, April 23, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1927 -A07724 Andrew Dayton v State of Alaska89 P.3d 806
- -
-
-
Friday, April 16, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1926 -A08487 Donnell R. Johnson v State of Alaska88 P.3d 1137
- -
-
-
Friday, April 9, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1923 -A07920 Steven Powell v State of Alaska88 P.3d 532
- -1924 -A08473 Ute Guerre-Chaley v State of Alaska88 P.3d 539
- -1925 -A08634 Gilbert R. Custer v State of Alaska88 P.3d 545
- -
-
-
Friday, April 2, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1921 -A08274 Shaun M. Whitesides v State of Alaska88 P.3d 147
- -1922 -A08444 Lory Larkin v State of Alaska88 P.3d 153
- -
-
-
Friday, March 26, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1920 -A08082 Kirk Crawford v State of Alaska87 P.3d 824
- -
-
-
Friday, March 19, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1919 -A08154 Alya Landt v State of Alaska87 P.3d 73
- -
-
-
Friday, February 20, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1918 -A08306 William J. Jackson v State of Alaska85 P.3d 1042
- -1917 -A08430 State of Alaska v Jung Ho Yi84 P.3d 469
- -
-
-
Friday, February 6, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1916 -A08544 Alexander Joseph Keller v State of Alaska84 P.3d 1010
- -
-
-
Friday, January 30, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1915 -A08020 State of Alaska v Clinton T. Andrews et al84 P.3d 441
- -
-
-
Monday, January 26, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1914 -A08313 Scott P. Robart v State of Alaska82 P.3d 787
- -
-
-
Friday, January 16, 2004
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1913 -A08357 Matthew D. MacDonald v State of Alaska83 P.3d 549
- -
-
-
Friday, January 9, 2004
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1912 -A08510 Byron S. Smith v State of Alaska83 P.3d 12
- -1911 -A08422 Sidney R Hertz v Dan Carothers81 P.3d 1011
- -
-
-
Friday, December 26, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1910 -A08377 Troy A. Wilson v State of Alaska82 P.3d 783
- -
-
-
Friday, December 12, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1909 -A08017 Ronald Smith v State of Alaska81 P.3d 304
- -1908 -A08495 Michael Sproates v State of Alaska81 P.3d 301
- -
-
-
Friday, November 21, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1907 -A08405, A08396 State of Alaska v Eric Morrow, Eric Morrow v State of Alaska
- -
-
-
Friday, November 14, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1906 -A08327 David S. Noy v State of Alaska79 P.3d 1201
- -
-
-
Friday, November 7, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1905 -A08434 Adonna Crouse v Municipality of Anchorage79 P.3d 660
- -
-
-
Friday, October 24, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1904 -A08208 Loren J. Larson, Jr. v State of Alaska79 P.3d 650
- -
-
-
Thursday, October 16, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1903 -A08332 Cameron Winfrey v State of Alaska78 P.3d 725
- -
-
-
Friday, October 10, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1902 -A08526 Jeffrey L. Dayton v State of Alaska78 P.3d 270
- -
-
-
Friday, September 26, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1901 -A08433, A08432 Roy H. Roberts v State of Alaska, Wayne Schouten v State of Alaska77 P.3d 739
- -
-
-
Friday, September 12, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1898 -A07982, A07996, A07998 William R. Baxter v State of Alaska, Vincent Haugen v State of Alaska, Lara C. Johnson v State of Alaska77 P.3d 19
- -1900 -A07401 Guy W. Johnson v State of Alaska77 P.3d 11
- -1899 -A08379 Frank Olson v State of Alaska77 P.3d 15
- -
-
-
Friday, August 29, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1896 -A08613 Herman Black v State of Alaska76 P.3d 417
- -
-
-
Friday, August 22, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1895 -A08209 Kenneth L. Bingaman v State of Alaska76 P.3d 398
- -
-
-
Friday, August 15, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1894 -A08305 Justin Hart v State of Alaska75 P.3d 1073
- -
-
-
Friday, August 8, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1893 -A08109 Daryle James v State of Alaska75 P.3d 1065
- -
-
-
Friday, July 25, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1891 -A08207 Pedro Cruz-Reyes v State of Alaska74 P.3d 219
- -
-
-
Friday, July 18, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1889 -A08257 State of Alaska v Barry A. Anderson73 P.3d 1242
- -1888 -A08409, A08371 Clara McDonald v State of Alaska, Michael Ault v State of Alaska73 P.3d 1248
- -
-
-
Thursday, July 3, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1887 -A08217 Samuel K. Carter v State of Alaska72 P.3d 1256
- -1886 -A08056 Brian Young v State of Alaska72 P.3d 1250
- -
-
-
Friday, June 27, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1885 -A08270, A08271, A08272 State of Alaska v John Dupier, State of Alaska v Rodman E. Miller, State of Alaska v Phillip J. Twohy III
- -
-
-
Friday, June 20, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1883 -A08169 Joseph Cole v State of Alaska72 P.3d 322
- -1884 -A07814 Jana F. Dandova v State of Alaska72 P.3d 325
- -
-
-
Friday, June 6, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1882 -A07923, A07943 Warren L. Register v State of Alaska & Phillip C. Carter, Jr., Roger A. Register v State of Alaska71 P.3d 337
- -
-
-
Friday, May 30, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1881 -A08216 John G. McGuire v State of Alaska70 P.3d 1114
- -1880 -A07428 John K. Phillips v State of Alaska70 P.3d 1128
- -1879 -A07400 Mark E. Copeland v State of Alaska70 P.3d 1118
- -
-
-
Friday, May 23, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1878 -A08254 Eric Fowler v State of Alaska70 P.3d 1106
- -1876 -A08184 Betty J. Magee v State of Alaska77 P.3d 732
- -1877 -A08205 Kyong Suk Lee v Municipality of Anchorage70 P.3d 1110
- -
-
-
Friday, May 9, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1874 -A07697 Sam W. McGee v State of Alaska70 P.3d 429
- -1875 -A08098 Mark C. Strumsky v State of Alaska69 P.3d 499
- -1873 -A08341 Walt Herreid v State of Alaska69 P.3d 507
- -
-
-
Friday, May 2, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1872 -A08210 Bradford Morton II v State of Alaska
- -1870 -A07899 Todd E. Porterfield v State of Alaska
- -1871 -A07829 Larry Parrott v Municipality of Anchorage69 P.3d 1
- -
-
-
Friday, April 25, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1869 -A08367 State of Alaska v Gregory Simpson73 P.3d 596
- -
-
-
Friday, April 18, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1867 -A08113 Charles Nelson v State of Alaska68 P.3d 402
- -
-
-
Friday, April 11, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1866 -A08062 State of Alaska v Vernon G. Jack,67 P.3d 673
- -1864 -A07647 Eugene Vent v State of Alaska67 P.3d 661
- -1865 -A08284 Hugh Tazruk v State of Alaska67 P.3d 687
- -
-
-
Friday, March 28, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1863 -A07418 Paul T. Stavenjord v State of Alaska66 P.3d 762
- -
-
-
Friday, March 21, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1862 -A07696 Ronn Perrin v State of Alaska66 P.3d 21
- -
-
-
Friday, March 14, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1859 -A08077 Torey John Tuttle v State of Alaska65 P.3d 884
- -1860 -A07826 Reginald Jones v State of Alaska65 P.3d 903
- -1858 -A07881 Sergey Tipikin v Municipality of Anchorage65 P.3d 899
- -1861 -A07969 Gary W. Dailey v State of Alaska65 P.3d 891
- -
-
-
Friday, February 14, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1851 -A08032 John Bertilson v State of Alaska64 P.3d 180
- -1856 -A07961 Frank Alto v State of Alaska64 P.3d 141
- -1855 -A08195 Shane Coles v State of Alaska64 P.3d 149
- -1852 -A08041 Floyd Hamrick v State of Alaska64 P.3d 175
- -1854 -A08044 Nicholas W. Brigman v State of Alaska64 P.3d 152
- -1857 -A08115 State of Alaska v Thomas Combs64 P.3d 135
- -1853 -A07600 Johnny I. Waters v State of Alaska64 P.3d 169
- -
-
-
Friday, January 31, 2003
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1850 -A07682 In the Matter of J. R. v 62 P.3d 114
- -1849 -A08162 Ishmael L. Thompson v State of Alaska64 P.3d 132
- -
-
-
Friday, January 3, 2003
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1848 -A08417 Norman Watt v State of Alaska61 P.3d 446
- -
-
-
Friday, December 27, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1847 -A07834 Richard L. Riley v State of Alaska60 P.3d 204
- -
-
-
Friday, December 13, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1846 -A08149 Joshua Melson v Municipality of Anchorage60 P.3d 199
- -1845 -A08092 Wynter J. Cathey v State of Alaska60 P.3d 192
- -
-
-
Friday, December 6, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1844 -A07930 Lovie D. Houston v Municipality of Anchorage59 P.3d 773
- -
-
-
Friday, November 22, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1842 -A07789 Christopher McCoy v State of Alaska59 P.3d 747*
- -1843 -A07762 Adam Hamilton v State of Alaska59 P.3d 760
- -
-
-
Friday, November 1, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1841 -A08142 Ronald Ahvakana v State of Alaska57 P.3d 723
- -
-
-
Friday, October 25, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1839 -A07587, A07778 Kevin Willis v State of Alaska, Barbara Nauska v State of Alaska57 P.3d 688
- -1838 -A08084 State of Alaska v Candice Auliye57 P.3d 711
- -1836 -A07266 Henry Wassilie v State of Alaska57 P.3d 719
- -1837 -A07739 Gregory Beaudoin v State of Alaska57 P.3d 703
- -1840 -A07773 Alfred H. Paul v State of Alaska57 P.3d 698
- -
-
-
Thursday, October 17, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1833 -A08289 Lottie R. Beasley v State of Alaska56 P.3d 1082
- -1834 -A07286 Wayne W. Semancik v State of Alaska57 P.3d 682
- -1835 -A07713 Sean Hughes v State of Alaska56 P.3d 1088
- -
-
-
Friday, October 11, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1832 -A07295 Evan E. Ramsey v State of Alaska56 P.3d 675
- -
-
-
Friday, September 27, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1828 -A07700 Frederick W. Morgan III v State of Alaska54 P.3d 332
- -1831 -A08065 Charles J. Conrad v State of Alaska54 P.3d 313
- -1829 -A08029 Carl Brewer v State of Alaska55 P.3d 749
- -1830 -A07638, A07635 Marvin L. Roberts v State of Alaska, Kevin W. Pease v State of Alaska54 P.3d 316
- -
-
-
Friday, September 13, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1827 -A08101 State of Alaska & Thomas Phillips Jr v District Court of the State of Alaska53 P.3d 629
- -1826 -A07210 Bruce L. Murray v State of Alaska524 P.3d 821
- -
-
-
Friday, September 6, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1824 -A07946 Phillip L. Hutchings, Jr. v State of Alaska53 P.3d 1132
- -1825 -A07883 Lynn E. Lacey v State of Alaska54 P.3d 304
- -
-
-
Friday, August 30, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1823 -A07902 Manuel Jesus Garay v State of Alaska53 P.3d 626
- -
-
-
Friday, August 23, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1820 -A08228 State of Alaska v Shavonne L. Eskridge53 P.3d 619
- -1819 -A07894 State of Alaska v Dusan Boceski53 P.3d 622
- -1821 -A07678 Clynton D. Butts v State of Alaska53 P.3d 609
- -
-
-
Friday, August 16, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1817 -A07681 State of Alaska v David T. Prince53 P.3d 157
- -1818 -A08028 State of Alaska v Brian Simpson53 P.3d 165
- -
-
-
Friday, August 9, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1816 -A07986 Sean Beatty v State of Alaska52 P.3d 752
- -
-
-
Friday, July 26, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1813 -A07787 William B. Ostlund v State of Alaska51 P.3d 938
- -1811 -A08079 Henry Johnson v State of Alaska50 P.3d 404
- -1812 -A07662 Miriam Mahan v State of Alaska51 P.3d 962
- -1815 -A07430 Albert Allen v State of Alaska51 P.3d 949
- -
-
-
Friday, July 12, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1809 -A07292 Bret Fletcher Maness v State of Alaska49 P.3d 1128
- -1810 -A07800 William R. Hammock v State of Alaska52 P.3d 746
- -1808 -A07887, A07885, A07886 State of Alaska v Sigmund T. Buchanan, State of Alaska v Jolene Felix, State of Alaska v Pamela Fain
- -
-
-
Friday, June 28, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1807 -A07690 Daryle D. James v State of Alaska49 P.3d 1120
- -
-
-
Friday, May 31, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1805 -A07980 State of Alaska v Gregory Rozak48 P.3d 474
- -
-
-
Friday, May 17, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1803 -A08124 Robert E. Richardson v State of Alaska47 P.3d 660
- -
-
-
Friday, May 3, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1802 -A07955 Dylan Wright v State of Alaska46 P.3d 395
- -
-
-
Friday, April 26, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1800 -A08221 Rodney Gene Lambert v State of Alaska45 P.3d 1214
- -
-
-
Friday, April 19, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1799 -A07445 Dewell Wayne Pearce v State of Alaska45 P.3d 679
- -
-
-
Friday, April 12, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1798 -A08050 State of Alaska v Norman R Judson45 P.3d 329
- -
-
-
Friday, March 29, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1797 -A07712 State of Alaska v Abidin Zeciri43 P.3d 169
- -1796 -A07804 Harvey E. Miller v State of Alaska44 P.3d 157
- -
-
-
Friday, March 22, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1795 -A08021 Tracy L. Randall v State of Alaska44 P.3d 984
- -
-
-
Friday, March 8, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1794 -A07908 Michael M. Alvin v State of Alaska42 P.3d 1156
- -1791 -A07895 Robert C Fitzgerald v State of Alaska42 P.3d 1143
- -1793 -A07853 Donald Blair v State of Alaska42 P.3d 1152
- -1792 -A07811, A07801 Brent Fortuny v State of Alaska, State of Alaska v Brent Fortuny
- -
-
-
Friday, March 1, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1790 -A07659 Michael Carpentino v State of Alaska38 P.3d 547
- -
-
-
Friday, February 15, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1789 -A07719 Sean McIntire v State of Alaska42 P.3d 558
- -
-
-
Friday, February 8, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1787 -A07561 Donald R. Dobberke v State of Alaska40 P.3d 1244
- -1788 -A07916 James G. Demers v State of Alaska42 P.3d 1
- -
-
-
Friday, February 1, 2002
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1786 -A07843 State of Alaska v Superior Court, Larry A. Reed, Real Party in Inter40 P.3d 1239
- -1785 -A07527 Thomas Busby v State of Alaska40 P.3d 807
- -
-
-
Friday, January 25, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1784 -A07615, A07616 State of Alaska v Harold W. Hawkins, Harold W. Hawkins v State of Alaska39 P.3d 1126
- -
-
-
Friday, January 11, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1783 -A07822 James S. Stoneking v State of Alaska39 P.3d 522
- -
-
-
Friday, January 4, 2002
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1782 -A08120 Thomas Wright v State of Alaska38 P.3d 545
- -
-
-
Friday, December 28, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1780 -A07583 Julia L. Tenison v State of Alaska38 P.3d 535
- -1778 -A07839 Donald Alexander v State of Alaska38 P.3d 543
- -
-
-
Friday, December 21, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1777 -A07786 David W. Brockway v State of Alaska37 P.3d 427
- -
-
-
Friday, December 14, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1776 -A07863 Hassan Zok v Municipality of Anchorage41 P.3d 154
- -
-
-
Friday, December 7, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1775 -A07752 State of Alaska v Calvin Cofey36 P.3d 733
- -
-
-
Friday, November 23, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1774 -A07572 Clayton Gottschalk v State of Alaska36 P.3d 49
- -1773 -A07756 Benjamin Lustig v State of Alaska36 P.3d 731
- -
-
-
Friday, November 16, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1772 -A07252 Virgil John v State of Alaska35 P.3d 53
- -
-
-
Friday, November 9, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1771 -A07728 Johnny Edwards v State of Alaska34 P.3d 962
- -
-
-
Friday, October 26, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1770 -A07565 Dondi Cook v State of Alaska36 P.3d 710
- -
-
-
Friday, October 12, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1769 -A07660 Henry T. Nicholia v State of Alaska34 P.3d 344
- -1768 -A07539 Jimmy Lampley v State of Alaska33 P.3d 184
- -
-
-
Friday, September 28, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1766 -A07803 Sean R. Hill v State of Alaska32 P.3d 10
- -
-
-
Friday, September 21, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1765 -A08051, A08040 State of Alaska v John Martin Jr, State of Alaska v John Martin, Jr.33 P.3d 495
- -
-
-
Friday, September 14, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1764 -A07602 State of Alaska v Matthew R. Euteneier31 P.3d 111
- -1763 -A07779 David A. Tyler v State of Alaska47 P.3d 1095
- -
-
-
Friday, August 31, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1762 -A07552 Willie Jackson v Terreault, Superintendent of Cook Inlet Pretrial31 P.3d 105
- -
-
-
Friday, August 24, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1761 -A07675 Fred A. Baker v State of Alaska30 P.3d 118
- -
-
-
Friday, August 17, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1759 -A07730 Bradley MacLeod v State of Alaska28 P.3d 943
- -1760 -A07472 Donald E. Heaps v State of Alaska30 P.3d 109
- -
-
-
Friday, July 27, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1757 -A07479 Shawn Malutin v State of Alaska27 P.3d 792
- -1758 -A07806 Charles W. Smith v State of Alaska28 P.3d 323
- -
-
-
Wednesday, July 25, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -4419 -A07564 Grant T. Hutchison v State of Alaska
- -
-
-
Friday, July 20, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1753 -A07603 Lance D. Linton, Sr. v State of Alaska27 P.3d 782
- -1755 -A07458 Carol Y. Pease v State of Alaska27 P.3d 783
- -1756 -A07366 William A. Hernandez v State of Alaska28 P.3d 315
- -1754 -A07689, A07699 Eugene J. Bourdon, Jr. v State of Alaska, State of Alaska v Eugene J. Bourdon, Jr.28 P.3d 319
- -
-
-
Friday, July 13, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1752 -A07227 Randall E. David v State of Alaska28 P.3d 309
- -
-
-
Friday, June 29, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1751 -A07735, A07733, A07734 Robert Krause, Jr. v State of Alaska, John M. Nunley v State of Alaska, Kenneth Cutler v State of Alaska26 P.3d 1113
- -
-
-
Friday, June 22, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1749 -A07614 State of Alaska v Raejean Bonham28 P.3d 303
- -
-
-
Friday, June 8, 2001
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -1748 -A07633 Peter Sanford v State of Alaska24 P.3d 1263
- -1747 -A07544 Grant T. Hutchison v State of Alaska27 P.3d 774
- -
-
-
Friday, June 1, 2001
- - - - - - - - - - - - - - - - - - - - - - - - -
- -1745 -A07320 William L. Wurthmann v State of Alaska27 P.3d 762
- -
-
- - - -
-
-
- - - - - - - - - - - - - - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/alaskactapp_subexample_1.html b/tests/examples/opinions/united_states/alaskactapp_subexample_1.html new file mode 100644 index 000000000..15f3dd8ac --- /dev/null +++ b/tests/examples/opinions/united_states/alaskactapp_subexample_1.html @@ -0,0 +1,261 @@ + + + + + + + Case Summary + + + + + + + + + +
+ +
+ +
+
+ +
+ + + +
+
+ + + +
+
+
+

Case Summary

+
+ + Notify me of oral arguments or decisions +
+ +
+
+
+ + A12335   Daniel Lee Brown v State of Alaska + Closed +
+
+
+
+ + +
+
+ +
+
Full Case Caption:
+
Daniel Lee Brown v State of Alaska
+
Contact Case Manager:
+
907-264-0629 (7629), Email
+
+
+
+ +
+
Case Type:
+
204 Appeal
+
Date Filed:
+
+ 7/8/2015 +
+
+
+
+
+
+

Oral Argument

+
+ +
+
Status:
+
+
Date/Time:
+
+
Location:
+
+
Video:
+
+ +
+
+
+
+
+
+
+
+
+
Opinions
+ + + + + + + + + + + + + + + + + + + + + + +
Number TypeDecisionDateCitationDocDocument
2616OpinionAffirm8/31/2018435 P.3d 989 + + +
+
+
+
+
+
Lower Court or Agency Information
+ + + + + + + + + + + + + + + + + + + + +
Case NumberJudgment DateDistribution DateLower Court or AgencyJudge
3PA-14-01076CR6/8/20156/8/2015SuperiorJudge Kari Kristiansen
+ Details for the Trial Court Case are located in the Courtview Website. To look up information on a + Trial Court Case copy the above Lower Court Case Number, click CourtView and paste into Case + Number field and click Search. +
+
+
+
+
Related Appellate Cases
+ No Related Appellate Cases +
+
+ +
+
+ + +
+ + + + + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tex_example.compare.json b/tests/examples/opinions/united_states/tex_example.compare.json index 2bfb5bad2..6454986fa 100644 --- a/tests/examples/opinions/united_states/tex_example.compare.json +++ b/tests/examples/opinions/united_states/tex_example.compare.json @@ -1,142 +1,82 @@ [ { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2457&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0617", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "nature_of_suit": "Petition for Review/Cause under Rule 53.1", + "Opinions": [ + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=fa4dc02f-9219-47ae-af9e-610967e3cec2&coa=cossup&DT=OPINION&MediaID=04d9e9c5-bfc2-422d-bca4-d76dce234526", + "author_str": "Young", + "joined_by_str": "Hecht;Blacklock", + "type": "030concurrence" + }, + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=259a3c9c-4bcf-4166-9ea2-09bd11b30d10&coa=cossup&DT=OPINION&MediaID=5cf04feb-fcf5-40b0-a67e-ad8ebefd3efc", + "author_str": "Lehrmann", + "joined_by_str": "Busby;Young", + "type": "030concurrence" + }, + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=b103a5e9-a915-468e-a207-ef1735308744&coa=cossup&DT=OPINION&MediaID=3ff7a9e4-24f7-44c6-9069-30f038d3b875", + "type": "010combined" + } + ], + "date_filed": "2024-03-01", + "judges": "Hecht;Blacklock;Young;Busby;Young;Lehrmann", + "disposition": "Court of appeals' judgment affirmed", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Eve Lynn Baker v. Terry Lee Bizzle", + "case_name_short": "" + }, + "case_name": "Eve Lynn Baker v. Terry Lee Bizzle", + "appeal_from_str": "2nd Court of Appeals", + "appeal_from_id": "texapp", + "OriginatingCourtInformation": { + "docket_number": "02-20-00075-CV", + "assigned_to_str": "E. Lee Gabriel", + "date_judgment": "2022-01-13" + }, + "docket_number": "22-0242", + "source": 2, + "blocked": false, + "case_name_short": "" + } }, { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2456&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0804", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2450&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0957", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2449&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0957", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2448&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-1039", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2446&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-0846", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2445&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0804", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2440&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0957", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2437&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0483", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2433&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0617", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2432&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-1039", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2425&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0617", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2422&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "12-0804", - "case_name_shorts": "" - }, - { - "case_dates": "2014-07-03", - "case_names": "No case names fetched during tests.", - "download_urls": "tests/examples/opinions/united_states/RetrieveDocument.aspx?DocId=2417&Index=***sc%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-0846", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "nature_of_suit": "Petition for Review/Cause under Tex. R. App. P. 59.1", + "Opinions": [ + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=094a8ad8-7205-4041-8b63-2fab9687e5c9&coa=cossup&DT=OPINION&MediaID=7ea5e635-2f83-4650-a5f4-4182c2a8bbec", + "per_curiam": true, + "type": "010combined" + } + ], + "date_filed": "2024-03-01", + "disposition": "Court of Appeals' judgment reversed and remanded to Court of Appeals", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "In THE INTEREST OF C.E., a CHILD v. the State of Texas", + "case_name_short": "" + }, + "case_name": "In THE INTEREST OF C.E., a CHILD v. the State of Texas", + "appeal_from_str": "2nd Court of Appeals", + "appeal_from_id": "texapp", + "OriginatingCourtInformation": { + "docket_number": "02-22-00285-CV", + "assigned_to_str": "D. Michael Wallach", + "date_judgment": "2023-01-12" + }, + "docket_number": "23-0180", + "source": 2, + "blocked": false, + "case_name_short": "" + } } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tex_example.html b/tests/examples/opinions/united_states/tex_example.html index eab4d10b4..e3e31a6a0 100644 --- a/tests/examples/opinions/united_states/tex_example.html +++ b/tests/examples/opinions/united_states/tex_example.html @@ -1,256 +1,1654 @@ - - - - - TAMES SEARCH - Supreme Court - - - - - - - - - - -
-
- - - - - -
- - - - - - - - - - -
-
-
-
- - -
- -
-
-
-
-
- - - -
- - - -
- -
-
- -
- - - - -

- -

Loading
- - - - -

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

-

- Supreme Court Home Page -
-

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

-

- Frequently Asked Questions - -
-

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

-

- Rules & Standards - -
-

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

-

- Orders & Opinions - -
-

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

-

- Clerk's Office - -
-

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

-

- About the Court -
-
-

- - - - - - - - - - - - - - - - - - - Contact - - | - - +
+
+
+
+
+
+ Texas Seal +
+ +
+
- - +
+
+
+
+
+ - - - - - - - - - Justices - - | - - - - - - - - - - - - - - - Employment - - | - - - - - - - - - - - - - - - History - - | - - - - - - - - - - - - - - - Court News & Advisories - - | - - - - - - - - - - - - - - - RSS Information - - | - - - - - - - - - - - - - - - Podcasts - - | -
- - - - - - - - - -

-

- Court Calendar - -
-

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

-

- - Permanent Judicial Commission for Children, Youth & Families -
-

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

-

- -
efiling logo
-
-

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

- Case Information

-
-
-
- -
- -
- Case Search - -
- -
- Electronic Briefs - -
- -
- Event Reports - -
- -
- Oral Argument Information - -
- -
- Oral Argument Audio - -
- -
- Oral Argument Video - -
- -
- Causes - -
- -
- -
-
-
- - - - - - - - - -
-
-

- Case Mail

-
-
-
-
Track Cases or Released Opinions
-
- - - - - -
-
-
-
- - - - - - - - -
- - - - - - - - - - - - - - - -
-
- - - - - - + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tex_subexample_1.html b/tests/examples/opinions/united_states/tex_subexample_1.html new file mode 100644 index 000000000..64513fe4d --- /dev/null +++ b/tests/examples/opinions/united_states/tex_subexample_1.html @@ -0,0 +1,1632 @@ + + + + + + Case Detail + + + + + +
+ +
+ +
+
+
+

+ Supreme Court +

+
+ + +
+ +
+
+ +
+
+
+
+ + + +
+ +
+ + + + + +
+ +
+ +
+
+ + + +
+ + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+
+ Case: + 22-0242 +     +
+
+ + +
+
+
+
+
+
+ +
+
+
+ + 22-0242 + +
+
+
+
+
+ +
+
+
+ 03/28/2022 +
+
+
+
+
+ +
+
+ Petition for Review/Cause under Rule 53.1 +
+
+
+
+ +
+
+ EVE LYNN BAKER  +
+
+
+
+ +
+
+ TERRY LEE BIZZLE  +
+
+ +
+
+
+
+
+
+
+
+ Appellate Briefs +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Date Event + TypeDescription + Remarks + Document
11/21/2022Brief on the MeritsRespondentResponse Brief on the Merits filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
10/17/2022Brief on the MeritsPetitionerPetitioner's Brief on the Merits filed on behalf of + Eve Lynn Baker.
+
+ + + + + +
+
+
07/13/2022Response to PetitionRespondentResponse to Petition for Review filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
03/28/2022Petition for ReviewPetitionerPetition for Review filed on behalf of Eve Lynn + Baker.
+
+ + + + + + + + + +
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+ Case Events +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Date + Event + TypeDisposition + Remarks + Document
03/01/2024Court approved judgment sent to + attorneys of recordIssued 
+
+ + + + + +
+
+
03/01/2024Concurring Opinion issued.IssuedJustice Young filed a concurring opinion, in which + Chief Justice Hecht and Justice Blacklock joined. +
+
+ + + + + +
+
+
03/01/2024Concurring Opinion issued.IssuedJustice Lehrmann filed a concurring opinion, in + which Justice Busby and Justice Young joined.
+
+
+ + + + + +
+
+
03/01/2024Opinion issuedCourt of appeals' judgment affirmedThe Court affirms the court of appeals' judgment. + Justice Devine delivered the opinion of the + Court.
(3/1/2024 4:00:11 PM) 220242c2.pdf, + 220242c1.pdf, 220242.pdf, 22-0242.jmt.pdf
+
+ + + + + + + + + +
+
+
10/11/2023Clerk's Record  
+
+ +
+
09/13/2023Oral argument  Argued on behalf of Petitioner by Paul M. Leopold; + Argued on behalf of Respondent by Alyssa S. + Herrington and Trey Volentine
+
+ + + + + + + + + + + + + +
+
+
09/08/2023Submission Schedule  
+
+ + + + + +
+
+
08/22/2023Oral Argument Submission Form + from Attorney received Oral Argument Submission Form filed on behalf of + Terry Lee Bizzle. Oral Argument will be presented by + Alyssa S. Herrington and Trey Volentine of Hanshaw + Kennedy Hafen, LLP of Frisco, Texas.
+
+ + + + + +
+
+
08/15/2023Oral Argument Submission Form + from Attorney received Oral Argument Submission Form filed on behalf of Eve + Lynn Baker. Oral Argument will be presented by Paul + M. Leopold from KoonsFuller from Southlake, + Texas.
+
+ + + + + +
+
+
06/30/2023Case set for oral argumentCase set for oral argumentThis cause has been set for oral argument at 9:00 + a.m., September 13, 2023. Time allotted to argue: + 20/20 minutes
+
+ + + + + +
+
+
03/10/2023Petition for Review disposed + Filing grantedThe date and time for oral argument are yet to be + determined.
+
+ + + + + +
+
+
03/10/2023Petition for Review granted  
+
+ +
+
11/21/2022Brief on the Merits Response Brief on the Merits filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
11/01/2022Motion for Extension of Time + disposed.Filing grantedMotion for Extension of Time to file Response Brief + on the Merits is granted. Response Brief is due + November 21, 2022. FURTHER REQUESTS FOR EXTENSIONS + OF TIME FOR THIS FILING WILL BE DISFAVORED. Reply + Brief is due December 6, 2022.
+
+ + + + + +
+
+
11/01/2022Motion for Extension of Time to + File Brief filed Unopposed Motion for Extension of Time to file + Response Brief on the Merits filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
10/17/2022Brief on the Merits Petitioner's Brief on the Merits filed on behalf of + Eve Lynn Baker.
+
+ + + + + +
+
+
09/29/2022Motion for Extension of Time + disposed.Filing grantedUnopposed Motion for Extension of Time to file + Petitioner's Brief on the Merits is granted. + Petitioner's Brief is due October 17, 2022. FURTHER + REQUESTS FOR EXTENSIONS OF TIME FOR THIS FILING WILL + BE DISFAVORED; Respondent's Brief is due November 7, + 2022; Reply Brief is due November 22, 2022.
+
+ + + + + +
+
+
09/28/2022Motion for Extension of Time to + File Brief filed Unopposed Motion for Extension of Time to file + Petitioner's Brief on the Merits filed on behalf of + Eve Lynn Baker.
+
+ + + + + +
+
+
09/02/2022Brief on the Merits Requested +  Brief on the merits requested: Petitioner's brief + due no later than October 3, 2022; Response brief + due October 24, 2022; Reply brief due November 8, + 2022.
+
+ + + + + +
+
+
07/13/2022Response to Petition Response to Petition for Review filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
06/03/2022Motion for Extension of Time to + File Response disposedFiling grantedMotion for Extension of Time to file Response to + Petition for Review is granted. Response is due July + 13, 2022.  FURTHER REQUESTS FOR EXTENSIONS OF + TIME FOR THIS FILING WILL BE DISFAVORED.
+
+ + + + + +
+
+
06/03/2022Motion for Extension of Time to + File Response Unopposed Motion for Extension of Time to file + Response to Petition for Review filed on behalf of + Terry Lee Bizzle.
+
+ + + + + +
+
+
05/13/2022Supreme Court of Texas Requested + Response Requested response to petition for review due no + later than June 13, 2022.
+
+ + + + + +
+
+
04/12/2022Case forwarded to Court  
+
+ +
+
04/11/2022Response Waiver filed Response Waiver filed on behalf of Terry Lee + Bizzle.
+
+ + + + + +
+
+
03/29/2022Clerk's Record  
+
+ +
+
03/29/2022Court reporter/recorder's record +   
+
+ +
+
03/28/2022Petition for Review Petition for Review filed on behalf of Eve Lynn + Baker.
+
+ + + + + + + + + +
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+ Calendars +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Set DateCalendar TypeReason SetRemarks
03/18/2024StatusMotion for rehearing due to be filed.  
+ +
+ + +
+
+
+
+
+
+
+
+
+ Parties +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
PartyPartyTypeRepresentative
Baker, Eve LynnPetitionerMs. Charla Bradshaw
Mr. Brian Scott + Loughmiller
Mr. Paul M. Leopold
Brett + Nelson
Bizzle, Terry LeeRespondentMs. Alyssa Herrington
Ms. Sarah Rose
Mr. + Allen "Trey" Volentine III
+ +
+ + +
+
+
+
+
+ +
+
+
+
+ Court of Appeals Information: +
+
+
+ +
+
+ +
+
+ + +
+
+
+
+ +
+
+ Reverse & Render  +
+
+
+
+ +
+
+ 683 SW3d 44, 01-13-22  +
+
+
+
+ +
+
+ 2nd Court of Appeals  +
+
+ +
+
+ +
+
+ +
+
+ Honorable E. Lee Gabriel  +
+
+ +
+
+
+
+
+
+
+
+ +
+
+ Trial Court Information +
+
+
+
+ +
+
+ 367th District Court  +
+
+
+
+ +
+
+ Denton  +
+
+
+
+ +
+
+ Honorable Margaret Barnes  +
+
+
+
+ +
+
+ 18-9925-367  +
+
+
+
+ +
+
+   +
+
+
+
+ +
+
+   +
+
+
+
+ +
+
+
+
+

+ To view or print PDF files you must have the Adobe Acrobat® reader. This + software + may be obtained without charge from Adobe. Download the reader from the Adobe Web site +

+
+
+ + +
+ +
+
+
+ + + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/tex_subexample_2.html b/tests/examples/opinions/united_states/tex_subexample_2.html new file mode 100644 index 000000000..a79883107 --- /dev/null +++ b/tests/examples/opinions/united_states/tex_subexample_2.html @@ -0,0 +1,2424 @@ + + + + + + Case Detail + + + + + +
+
+
+

+ Supreme Court +

+
+ + +
+ +
+
+ +
+
+
+
+ + + +
+ +
+ + + + + +
+ +
+ +
+
+ + + +
+ + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+
+ Case: + 23-0180 +     +
+
+ + +
+
+
+
+
+
+ +
+
+
+ + 23-0180 + +
+
+
+
+
+ +
+
+
+ 03/07/2023 +
+
+
+
+
+ +
+
+ Petition for Review/Cause under Tex. R. App. P. 59.1 +
+
+
+
+ +
+
+ IN THE INTEREST OF C.E., A CHILD  +
+
+
+
+ +
+
+   +
+
+ +
+
+
+
+
+
+
+
+ Appellate Briefs +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Date Event + TypeDescription + Remarks + Document
10/06/2023Reply BriefPetitionerReply Brief on the Merits filed on behalf of Texas + Department of Family & Protective Services.
+
+ + + + + +
+
+
10/06/2023Brief on the MeritsPetitioner's Reply BriefPetitioner's Reply Brief on the Merits filed on + behalf of C.E.
+
+ + + + + +
+
+
09/28/2023Brief on the MeritsRespondentRespondent's Brief on the Merits filed on behalf of + B.K.
+
+ + + + + +
+
+
09/18/2023Brief on the MeritsPetitionerPetitioner's Brief on the Merits filed on behalf of + Texas Department of Family and Protective Services. +
+
+ + + + + +
+
+
09/18/2023Brief on the MeritsParental Termination casePetitioner's Brief on the Merits filed on behalf of + C.E.
+
+ + + + + +
+
+
06/16/2023Reply to Response to Petition + filed PetitionerReply to Response to Petition for Review filed on + behalf of TDFPS.
+
+ + + + + +
+
+
06/06/2023Response to PetitionRespondentResponse to Petition for Review filed on behalf of + B.K.
+
+ + + + + +
+
+
04/03/2023Redrafted Petition for Review + PetitionerRedrafted Petition for Review filed on behalf of + TDPFS.
+
+ + + + + + + + + +
+
+
04/03/2023Petition for Review (Parental + Termination)PetitionerPetition for Review filed on behalf of C.E.
+
+ + + + + + + + + +
+
+
03/20/2023Petition for Review (Parental + Termination)PetitionerPetition for Review filed on behalf of TDFPS.
+
+
+ + + + + + + + + +
+
+
+ +
+ + +
+
+
+
+
+
+
+
+
+ Case Events +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Date + Event + TypeDisposition + Remarks + Document
03/01/2024Court approved judgment sent to + attorneys of recordIssued 
+
+ + + + + +
+
+
03/01/2024Opinion issuedIssuedPursuant to Texas Rule of Appellate Procedure 59.1, + after granting the petitions for review and without + hearing oral argument, the Court reverses the court + of appeals' judgment and remands the case to that + court. Per Curiam Opinion
+
+ +
+
03/01/2024Petition for Review disposed + Petition granted pursuant to TRAP 59.1 
+
+ +
+
03/01/2024Petition for Review granted + under TRAP 59.1  
+
+ +
+
03/01/2024Opinion issuedCourt of Appeals' judgment reversed and remanded to + Court of AppealsPursuant to Texas Rule of Appellate Procedure 59.1, + after granting the petitions for review and without + hearing oral argument, the Court reverses the court + of appeals' judgment and remands the case to that + court. Per Curiam Opinion

(3/1/2024 5:10:13 + PM) 230180.pdf, 23-0180.jmt.pdf
+
+ + + + + + + + + +
+
+
03/01/2024Petition for Review disposed + Petition granted pursuant to TRAP 59.1 
+
+ +
+
03/01/2024Petition for Review granted + under TRAP 59.1  
+
+ +
+
10/06/2023Reply Brief Reply Brief on the Merits filed on behalf of Texas + Department of Family & Protective Services.
+
+ + + + + +
+
+
10/06/2023Brief on the Merits Petitioner's Reply Brief on the Merits filed on + behalf of C.E.
+
+ + + + + +
+
+
09/28/2023Brief on the Merits Respondent's Brief on the Merits filed on behalf of + B.K.
+
+ + + + + +
+
+
09/18/2023Brief on the Merits Petitioner's Brief on the Merits filed on behalf of + Texas Department of Family and Protective Services. +
+
+ + + + + +
+
+
09/18/2023Brief on the Merits Petitioner's Brief on the Merits filed on behalf of + C.E.
+
+ + + + + +
+
+
09/14/2023Notice of Appearance Notice of Appearance filed on behalf of Texas + Department of Family and Protective Services.
+
+
+ + + + + +
+
+
09/01/2023Brief on the Merits Requested +  Brief on the merits requested: Petitioner's brief + due no later than September 18, 2023; Response brief + due September 28, 2023; Reply brief due October 6, + 2023.
+
+ + + + + +
+
+
06/16/2023Reply to Response to Petition + filed  Reply to Response to Petition for Review filed on + behalf of TDFPS.
+
+ + + + + +
+
+
06/06/2023Response to Petition Response to Petition for Review filed on behalf of + B.K.
+
+ + + + + +
+
+
05/31/2023Motion for Extension of Time to + File Response disposedFiling grantedMotion for Extension of Time to file Response to + Petition for Review granted. Further requests for + extensions of time will be disfavored. Response is + due no later than June 6, 2023.
+
+ + + + + +
+
+
05/30/2023Motion for Extension of Time to + File Response Motion for Extension of Time to file Response to + Petition for Review filed on behalf of B.K.
+
+ + + + + +
+
+
05/12/2023Supreme Court of Texas Requested + Response Requested responses to both petitions for review due + no later than May 30, 2023.
+
+ + + + + +
+
+
04/11/2023Case forwarded to Court  
+
+ +
+
04/11/2023Case forwarded to Court  
+
+ +
+
04/10/2023Response Waiver filed Response Waiver to Petitions for Review filed on + behalf of B.K.
+
+ + + + + +
+
+
04/03/2023Petition for Review (Parental + Termination) Petition for Review filed on behalf of C.E.
+
+ + + + + + + + + +
+
+
04/03/2023Redrafted Petition for Review +  Redrafted Petition for Review filed on behalf of + TDPFS.
+
+ + + + + + + + + +
+
+
03/22/2023Petition for Review disposed + Filed document is struck by the CourtThe Petition for Review violates Texas Rules of + Appellate Procedure 9.4(i)(2)(D) and is struck. A + Redafted Petition for Review is due no later than + April 3, 2023.
+
+ + + + + +
+
+
03/22/2023Motion to Exceed Word Limit + disposedDeniedMotion to Exceed Word Limit is denied.
+
+ +
+
03/20/2023Petition for Review (Parental + Termination) Petition for Review filed on behalf of TDFPS.
+
+
+ + + + + + + + + +
+
+
03/16/2023Motion to Exceed Word Limit Motion to Exceed Word Limit filed on behalf of + TDFPS.
+
+ + + + + +
+
+
03/08/2023Notice from attorney regarding + vacation dates Vacation Notice Letter filed on behalf of C.E.
+
+
+ + + + + +
+
+
03/07/2023Motion for Extension of Time to + File Petition for Review disposedFiling grantedMotion for Extension of Time to file Petition for + Review granted.  Petition for Review is due no + later than April 3, 2023.
+
+ + + + + +
+
+
03/07/2023Motion for Extension of Time to + File Petition for Review filed Motion for Extension of Time to file Petition for + Review filed on behalf of C G.E.
+
+ + + + + + + + + +
+
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Clerk's Record  
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
03/07/2023Court reporter/recorder's record +   
+
+ +
+
+ +
+ + +
+
+
+
+
+
+
+
+
+ Calendars +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Set DateCalendar TypeReason SetRemarks
03/18/2024StatusMotion for rehearing due to be filed.  
+ +
+ + +
+
+
+
+
+
+
+
+
+ Parties +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PartyPartyTypeRepresentative
Texas Department of Family and Protective Services + PetitionerMs. Rebecca L. Safavi
Ms. Caroline Carow +
Ms. Amie Serrano
Ms. Leslie Capace +
Mr. Michael Burton
Benjamin S. Walton +
Mr. Jerry L. Reyes
Mr. Eric Tek Tai +
K., B.RespondentMr. Paul M. Leopold
Ms. Jessica Hall Janicek +
E., C.PetitionerMr. Brad M. LaMorgese
E., C. Other interested party Samuel Bryant
+ +
+ + +
+
+
+
+
+ +
+
+
+
+ Court of Appeals Information: +
+
+
+ +
+
+ +
+
+ + +
+
+
+
+ +
+
+ Reverse & Remand  +
+
+
+
+ +
+
+ ___ SW3d ___, 01-12-23  +
+
+
+
+ +
+
+ 2nd Court of Appeals  +
+
+ +
+
+ +
+
+ +
+
+ Honorable D. Michael Wallach  +
+
+ +
+
+
+
+
+
+
+
+ +
+
+ Trial Court Information +
+
+
+
+ +
+
+ 355th District Court  +
+
+
+
+ +
+
+ Hood  +
+
+
+
+ +
+
+ Honorable Bryan T. Bufkin  +
+
+
+
+ +
+
+ P2021009  +
+
+
+
+ +
+
+   +
+
+
+
+ +
+
+   +
+
+
+
+ +
+
+
+
+

+ To view or print PDF files you must have the Adobe Acrobat® reader. This + software + may be obtained without charge from Adobe. Download the reader from the Adobe Web site +

+
+
+ + +
+ +
+
+
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/tests/examples/opinions/united_states/texapp_10_example.compare.json b/tests/examples/opinions/united_states/texapp_10_example.compare.json index 07d67c735..0bb64e706 100644 --- a/tests/examples/opinions/united_states/texapp_10_example.compare.json +++ b/tests/examples/opinions/united_states/texapp_10_example.compare.json @@ -1,102 +1,102 @@ [ { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7045&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-12-00179-CV", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "nature_of_suit": "Real Property", + "Opinions": [ + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=ebebfa77-e9a1-4cf8-bb0c-949c3a7e5c9b&coa=coa10&DT=Opinion&MediaID=fc63048e-aac0-4d23-915f-9612e9b8b56f", + "type": "010combined" + } + ], + "date_filed": "2024-02-16", + "disposition": "Aff/Rev & Remanded to App Ct", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Fort Worth & Western Railroad Company v. Nathan D. Albert and Chisholm Trail Redi-Mix, LLC", + "case_name_short": "" + }, + "case_name": "Fort Worth & Western Railroad Company v. Nathan D. Albert and Chisholm Trail Redi-Mix, LLC", + "appeal_from_str": "18th District Court", + "OriginatingCourtInformation": { + "assigned_to_str": "Kenneth C. Curry", + "docket_number": "DC-C201600307", + "court_reporter": "Robin S. Howe" + }, + "docket_number": "10-18-00219-CV", + "source": 2, + "blocked": false, + "case_name_short": "" + } }, { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7040&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-12-00308-CR", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "nature_of_suit": "Evading Arrest", + "Opinions": [ + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=48b90aa3-c8fa-4f0d-bc69-a15600ce7a2d&coa=coa10&DT=Opinion&MediaID=27d9a514-f1f8-4bd8-8193-315e3ed3f311", + "type": "040dissent" + }, + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=3b480ec6-987e-4679-9016-149cbec3de63&coa=coa10&DT=Opinion&MediaID=ad4a1d9e-20c0-499d-9ac7-2dabc401f124", + "type": "010combined" + } + ], + "date_filed": "2024-02-29", + "disposition": "Modified/Reformed and Affirmed", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "Hollis Lane Willingham v. the State of Texas", + "case_name_short": "" + }, + "case_name": "Hollis Lane Willingham v. the State of Texas", + "appeal_from_str": "369th District Court", + "OriginatingCourtInformation": { + "assigned_to_str": "Charles Michael Davis", + "docket_number": "19-0032CR", + "court_reporter": "Nancy K. Adams" + }, + "docket_number": "10-21-00158-CR", + "source": 2, + "blocked": false, + "case_name_short": "" + } }, { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7039&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00136-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7038&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00127-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7025&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00131-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7022&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00153-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7020&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00390-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=7006&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-12-00287-CR", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=6983&Index=***coa10%5cOpinion", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-13-00275-CV", - "case_name_shorts": "" - }, - { - "case_dates": "2014-06-26", - "case_names": "No case names fetched during tests.", - "download_urls": "http://www.search.txcourts.gov/RetrieveDocument.aspx?DocId=142&Index=***coa10%5cOrder", - "precedential_statuses": "Published", - "blocked_statuses": false, - "date_filed_is_approximate": false, - "docket_numbers": "10-14-00162-CV", - "case_name_shorts": "" + "Docket": { + "OpinionCluster": { + "nature_of_suit": "Miscellaneous/Other Criminal including Misdemeanor or Felony", + "Opinions": [ + { + "download_url": "tests/examples/opinions/united_states/SearchMedia.aspx?MediaVersionID=27f7bbd8-6204-4734-b6d9-3eae1973bbc6&coa=coa10&DT=Opinion&MediaID=7a64ebd4-b434-457a-8c3b-b1d9712b3111", + "type": "010combined" + } + ], + "date_filed": "2024-03-04", + "disposition": "Dismissed", + "source": "C", + "date_filed_is_approximate": false, + "blocked": false, + "precedential_status": "Published", + "case_name": "James Gambrell v. the State of Texas", + "case_name_short": "" + }, + "case_name": "James Gambrell v. the State of Texas", + "appeal_from_str": "12th District Court", + "OriginatingCourtInformation": { + "assigned_to_str": "David W. Moorman", + "docket_number": "30096", + "court_reporter": "Jacqueline A. Mills" + }, + "docket_number": "10-23-00176-CR", + "source": 2, + "blocked": false, + "case_name_short": "" + } } ] \ No newline at end of file diff --git a/tests/examples/opinions/united_states/texapp_10_example.html b/tests/examples/opinions/united_states/texapp_10_example.html index e9e6d7ffe..55b18820b 100644 --- a/tests/examples/opinions/united_states/texapp_10_example.html +++ b/tests/examples/opinions/united_states/texapp_10_example.html @@ -1,1604 +1,398 @@ - - - TAMES SEARCH - Supreme Court - - - - - - - - - - -
-
- - - - - -
- - - - - - - - - - -
-
-
-
- -