From 774768e2015e8b3607c2ea7c89a06f328a310a3f Mon Sep 17 00:00:00 2001 From: James Turk Date: Wed, 8 Jul 2020 17:58:19 -0400 Subject: [PATCH 1/9] WIP draft of MD scraper --- scrape/scrape_md.py | 122 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 scrape/scrape_md.py diff --git a/scrape/scrape_md.py b/scrape/scrape_md.py new file mode 100644 index 0000000000..89f6e52efb --- /dev/null +++ b/scrape/scrape_md.py @@ -0,0 +1,122 @@ +import scrapelib +import lxml.html +from functools import lru_cache + + +class NoSuchScraper(Exception): + pass + + +class XPathError(ValueError): + pass + + +class BaseScraper(scrapelib.Scraper): + root_xpath = None + url = None + + @lru_cache(maxsize=None) + def lxml(self, url): + """ + method that actually fetches the data, might be called by a child class + """ + print(f"fetching {url} via {self.__class__.__name__}") + html = self.get(url) + doc = lxml.html.fromstring(html.content) + doc.make_links_absolute(url) + return doc + + def __init__(self, **kwargs): + super().__init__(**kwargs) + + def yield_root_objects(self): + if not self.root_xpath: + raise NotImplementedError( + "must either provide root_xpath or override yield_root_objects" + ) + items = self.root_xpath.match(self.doc) + for item in items: + yield self.process_root_item(item) + + def process_root_item(self, item): + return item + + +def elem_to_str(item, inside=False): + attribs = " ".join(f"{k}='{v}'" for k, v in item.attrib.items()) + return f"<{item.tag} {attribs}> @ line {item.sourceline}" + + +class XPath: + def __init__(self, xpath, min_items=1, max_items=None, num_items=None): + self.xpath = xpath + self.min_items = min_items + self.max_items = max_items + self.num_items = num_items + + def match(self, element, *, num_items=None): + items = element.xpath(self.xpath) + + num_items = self.num_items if num_items is None else num_items + + if num_items is not None and len(items) != num_items: + print(items) + raise XPathError( + f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " + f"expected {num_items}" + ) + if self.min_items is not None and len(items) < self.min_items: + raise XPathError( + f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " + f"expected at least {self.min_items}" + ) + if self.max_items is not None and len(items) > self.max_items: + raise XPathError( + f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " + f"expected at most {self.max_items}" + ) + + return items + + def match_one(self, element): + return self.match(element, num_items=1)[0] + + +class MDPersonScraper(BaseScraper): + root_xpath = XPath("//div[@id='myDIV']//div[@class='p-0 member-index-cell']") + + def __init__(self, url, **kwargs): + super().__init__(**kwargs) + self.url = url + self.doc = self.lxml(self.url) + + def process_root_item(self, item): + dd_text = XPath(".//dd/text()").match(item) + district = dd_text[2].strip() + party = dd_text[4].strip() + return { + "img": XPath(".//img/@src").match_one(item), + "name": XPath(".//dd/a[1]/text()").match_one(item), + "link": XPath(".//dd/a[1]/@href").match_one(item), + "district": district, + "party": party, + } + + +def parameter_dispatch(chamber, session=None): + """ + this function converts accepted parameters to an instance of a class + that can do the scraping + """ + if session: + raise NoSuchScraper("cannot scrape non-current sessions") + if chamber == "upper": + scraper = MDPersonScraper("http://mgaleg.maryland.gov/mgawebsite/Members/Index/senate") + elif chamber == "lower": + scraper = MDPersonScraper("http://mgaleg.maryland.gov/mgawebsite/Members/Index/house") + + for partial_obj in scraper.yield_root_objects(): + print(partial_obj) + + +parameter_dispatch("upper") From 660b05647d775853afc7bd7bdeb240b3607be269 Mon Sep 17 00:00:00 2001 From: James Turk Date: Thu, 9 Jul 2020 16:58:42 -0400 Subject: [PATCH 2/9] MD new format PoC --- scrape/scrape_md.py | 282 +++++++++++++++++++++++++++++++------------- 1 file changed, 203 insertions(+), 79 deletions(-) diff --git a/scrape/scrape_md.py b/scrape/scrape_md.py index 89f6e52efb..050311a31d 100644 --- a/scrape/scrape_md.py +++ b/scrape/scrape_md.py @@ -1,45 +1,7 @@ -import scrapelib +import re import lxml.html -from functools import lru_cache - - -class NoSuchScraper(Exception): - pass - - -class XPathError(ValueError): - pass - - -class BaseScraper(scrapelib.Scraper): - root_xpath = None - url = None - - @lru_cache(maxsize=None) - def lxml(self, url): - """ - method that actually fetches the data, might be called by a child class - """ - print(f"fetching {url} via {self.__class__.__name__}") - html = self.get(url) - doc = lxml.html.fromstring(html.content) - doc.make_links_absolute(url) - return doc - - def __init__(self, **kwargs): - super().__init__(**kwargs) - - def yield_root_objects(self): - if not self.root_xpath: - raise NotImplementedError( - "must either provide root_xpath or override yield_root_objects" - ) - items = self.root_xpath.match(self.doc) - for item in items: - yield self.process_root_item(item) - - def process_root_item(self, item): - return item +import click +import scrapelib def elem_to_str(item, inside=False): @@ -48,16 +10,18 @@ def elem_to_str(item, inside=False): class XPath: - def __init__(self, xpath, min_items=1, max_items=None, num_items=None): + def __init__(self, xpath, *, min_items=1, max_items=None, num_items=None): self.xpath = xpath self.min_items = min_items self.max_items = max_items self.num_items = num_items - def match(self, element, *, num_items=None): + def match(self, element, *, min_items=None, max_items=None, num_items=None): items = element.xpath(self.xpath) num_items = self.num_items if num_items is None else num_items + max_items = self.max_items if max_items is None else max_items + min_items = self.min_items if min_items is None else min_items if num_items is not None and len(items) != num_items: print(items) @@ -65,15 +29,15 @@ def match(self, element, *, num_items=None): f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " f"expected {num_items}" ) - if self.min_items is not None and len(items) < self.min_items: + if min_items is not None and len(items) < min_items: raise XPathError( f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " - f"expected at least {self.min_items}" + f"expected at least {min_items}" ) - if self.max_items is not None and len(items) > self.max_items: + if max_items is not None and len(items) > max_items: raise XPathError( f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " - f"expected at most {self.max_items}" + f"expected at most {max_items}" ) return items @@ -82,41 +46,201 @@ def match_one(self, element): return self.match(element, num_items=1)[0] -class MDPersonScraper(BaseScraper): - root_xpath = XPath("//div[@id='myDIV']//div[@class='p-0 member-index-cell']") +class NoSuchScraper(Exception): + pass + + +class XPathError(ValueError): + pass + - def __init__(self, url, **kwargs): - super().__init__(**kwargs) +# @attr.s +# class ContactDetail: +# note = attr.ib() +# voice = attr.ib() +# email =attr.ib() +# fax = attr.ib() +# address = attr.ib() + + +# @attr.s +# class Person: +# name = attr.ib() +# state = attr.ib() +# party = attr.ib() +# district = attr.ib() +# chamber = attr.ib() +# image = attr.ib(default=None) +# given_name = attr.ib(default=None) +# family_name = attr.ib(default=None) +# links = attr.ib(default=attr.Factory(list)) +# sources = attr.ib(default=attr.Factory(list)) +# capitol_office = attr.ib(default=None) +# district_office = attr.ib(default=None) + + +class Scraper(scrapelib.Scraper): + def fetch_page_data(self, page): + print(f"fetching {page.url} for {page.__class__.__name__}") + data = self.get(page.url) + page.set_raw_data(data) + + def augment_item(self, item, subpages): + for subpage_func in subpages: + page = subpage_func(item) + self.fetch_page_data(page) + page_data = page.get_data() + item.update(page_data) + return item + + def scrape(self, chamber, session): + for page in self.start_scrape(chamber, session): + self.fetch_page_data(page) + for item in page.get_data(): + if page.subpages: + item = self.augment_item(item, page.subpages) + if isinstance(item, dict): + item = self.to_object(item) + yield item + + def to_object(self, item): + return item + + +class HtmlPage: + def __init__(self, url): self.url = url - self.doc = self.lxml(self.url) - def process_root_item(self, item): + def set_raw_data(self, raw_data): + self.raw_data = raw_data + self.root = lxml.html.fromstring(raw_data.content) + self.root.make_links_absolute(self.url) + + def get_data(self): + pass + + +class HtmlListPage(HtmlPage): + xpath = None + + def get_data(self): + if not self.xpath: + raise NotImplementedError("must either provide xpath or override scrape") + items = self.xpath.match(self.root) + for item in items: + item = self.process_item(item) + yield item + + def process_item(self, item): + return item + + +class MDPersonDetail(HtmlPage): + def parse_address_block(self, block): + state = "address" + # group lines by type + values = {"address": [], "phone": [], "fax": []} + for line in block.splitlines(): + line = line.strip() + if not line: + continue + if line.startswith("Phone"): + state = "phone" + elif line.startswith("Fax"): + state = "fax" + + values[state].append(line) + + # postprocess values + + phones = [] + for line in values["phone"]: + for match in re.findall(r"\d{3}-\d{3}-\d{4}", line): + phones.append(match) + + faxes = [] + for line in values["fax"]: + for match in re.findall(r"\d{3}-\d{3}-\d{4}", line): + faxes.append(match) + + return {"address": "; ".join(values["address"]), "phones": phones, "faxes": faxes} + + def get_data(self): + # annapolis_info = ( + # XPath("//dt[text()='Annapolis Info']/following-sibling::dd[1]") + # .match_one(self.root) + # .text_content() + # ) + # interim_info = ( + # XPath("//dt[text()='Interim Info']/following-sibling::dd[1]") + # .match_one(self.root) + # .text_content() + # ) + # print(self.parse_address_block(annapolis_info)) + # print(self.parse_address_block(interim_info)) + + return dict( + name=XPath("//h2/text()").match_one(self.root).split(" ", 1)[1], + # "email": XPath( + # "//dt[text()='Contact']/following-sibling::dd[1]/a[1]/text()" + # ).match_one(self.root), + ) + + +class MDPersonList(HtmlListPage): + xpath = XPath("//div[@id='myDIV']//div[@class='p-0 member-index-cell']") + subpages = [lambda item: MDPersonDetail(item["link"])] + + def process_item(self, item): dd_text = XPath(".//dd/text()").match(item) district = dd_text[2].strip() party = dd_text[4].strip() - return { - "img": XPath(".//img/@src").match_one(item), - "name": XPath(".//dd/a[1]/text()").match_one(item), - "link": XPath(".//dd/a[1]/@href").match_one(item), - "district": district, - "party": party, - } - - -def parameter_dispatch(chamber, session=None): - """ - this function converts accepted parameters to an instance of a class - that can do the scraping - """ - if session: - raise NoSuchScraper("cannot scrape non-current sessions") - if chamber == "upper": - scraper = MDPersonScraper("http://mgaleg.maryland.gov/mgawebsite/Members/Index/senate") - elif chamber == "lower": - scraper = MDPersonScraper("http://mgaleg.maryland.gov/mgawebsite/Members/Index/house") - - for partial_obj in scraper.yield_root_objects(): - print(partial_obj) - - -parameter_dispatch("upper") + return dict( + image=XPath(".//img/@src").match_one(item), + district=district, + party=party, + link=XPath(".//dd/a[1]/@href").match_one(item), + ) + + +class MDPersonScraper(Scraper): + def start_scrape(self, chamber, session): + if session: + raise NoSuchScraper("cannot scrape non-current sessions") + if chamber == "upper": + yield MDPersonList("http://mgaleg.maryland.gov/mgawebsite/Members/Index/senate") + elif chamber == "lower": + yield MDPersonList("http://mgaleg.maryland.gov/mgawebsite/Members/Index/house") + + def to_object(self, item): + return item + + +@click.group() +def cli(): + pass + + +@cli.command() +@click.argument("class_name") +@click.argument("url") +def sample(class_name, url): + # implementation is a stub, this will be able to accept dotted paths once implemented + Cls = globals()[class_name] + page = Cls(url) + s = Scraper() + s.fetch_page_data(page) + print(page.get_data()) + + +@cli.command() +@click.option("--chamber", multiple=True, default=["upper", "lower"]) +@click.option("--session", default=None) +def scrape(chamber, session): + for ch in chamber: + for item in MDPersonScraper().scrape(ch, session): + print(item) + + +if __name__ == "__main__": + cli() From 9d4b2d88e702637f7950acf4cc4c516b568e5d34 Mon Sep 17 00:00:00 2001 From: James Turk Date: Thu, 9 Jul 2020 17:23:03 -0400 Subject: [PATCH 3/9] MD some docs --- scrape/scrape_md.py | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/scrape/scrape_md.py b/scrape/scrape_md.py index 050311a31d..6c7897400f 100644 --- a/scrape/scrape_md.py +++ b/scrape/scrape_md.py @@ -104,23 +104,52 @@ def scrape(self, chamber, session): yield item def to_object(self, item): + """ + converts intermediate data (often in a dictionary) to a final object to be validated + """ return item + def start_scrape(self, chamber, session): + """ + yields one or more Page objects that will kick off the scrape. -class HtmlPage: + It may also raise a ValueError (TBD) when it does not have an appropriate entrypoint + to scrape the requested data. + """ + raise NotImplementedError() + + +class Page: def __init__(self, url): + """ + a Page can be instantiated with a url & options (TBD) needed to fetch it + """ self.url = url def set_raw_data(self, raw_data): + """ callback to handle raw data returned by grabbing the URL """ self.raw_data = raw_data - self.root = lxml.html.fromstring(raw_data.content) - self.root.make_links_absolute(self.url) def get_data(self): - pass + """ return data extracted from this page and this page alone """ + raise NotImplementedError() + + +class HtmlPage: + def set_raw_data(self, raw_data): + self.raw_data = raw_data + self.root = lxml.html.fromstring(raw_data.content) + self.root.make_links_absolute(self.url) class HtmlListPage(HtmlPage): + """ + Simplification for HTML pages that get a list of items and process them. + + When overriding the class, instead of providing get_data, one must only provide + an xpath and a process_item function. + """ + xpath = None def get_data(self): @@ -205,6 +234,12 @@ def process_item(self, item): class MDPersonScraper(Scraper): def start_scrape(self, chamber, session): + """ This function yields one or more Page objects that will kick off the scrape. + + It may also raise a ValueError (TBD) when it does not have an appropriate entrypoint + to scrape the requested data. + """ + if session: raise NoSuchScraper("cannot scrape non-current sessions") if chamber == "upper": From fadd20f4783e5cdd1900de820e66e959044143f2 Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 20 Jul 2020 16:49:27 -0400 Subject: [PATCH 4/9] fix switching to objects --- scrape/scrape_md.py | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/scrape/scrape_md.py b/scrape/scrape_md.py index 6c7897400f..247d008e4c 100644 --- a/scrape/scrape_md.py +++ b/scrape/scrape_md.py @@ -2,6 +2,7 @@ import lxml.html import click import scrapelib +from common import Person def elem_to_str(item, inside=False): @@ -24,7 +25,6 @@ def match(self, element, *, min_items=None, max_items=None, num_items=None): min_items = self.min_items if min_items is None else min_items if num_items is not None and len(items) != num_items: - print(items) raise XPathError( f"{self.xpath} on {elem_to_str(element)} got {len(items)}, " f"expected {num_items}" @@ -43,7 +43,7 @@ def match(self, element, *, min_items=None, max_items=None, num_items=None): return items def match_one(self, element): - return self.match(element, num_items=1)[0] + return str(self.match(element, num_items=1)[0]) class NoSuchScraper(Exception): @@ -165,6 +165,9 @@ def process_item(self, item): class MDPersonDetail(HtmlPage): + def __init__(self, url): + self.url = url + def parse_address_block(self, block): state = "address" # group lines by type @@ -220,11 +223,15 @@ class MDPersonList(HtmlListPage): xpath = XPath("//div[@id='myDIV']//div[@class='p-0 member-index-cell']") subpages = [lambda item: MDPersonDetail(item["link"])] + def __init__(self, url): + self.url = url + def process_item(self, item): dd_text = XPath(".//dd/text()").match(item) district = dd_text[2].strip() party = dd_text[4].strip() return dict( + chamber="upper" if "senate" in self.url else "lower", image=XPath(".//img/@src").match_one(item), district=district, party=party, @@ -248,7 +255,17 @@ def start_scrape(self, chamber, session): yield MDPersonList("http://mgaleg.maryland.gov/mgawebsite/Members/Index/house") def to_object(self, item): - return item + p = Person( + state="md", + chamber=item["chamber"], + name=item["name"], + party=item["party"], + image=item["image"], + district=item["district"], + ) + p.add_link(item["link"]) + p.add_source(item["link"]) + return p @click.group() @@ -274,7 +291,7 @@ def sample(class_name, url): def scrape(chamber, session): for ch in chamber: for item in MDPersonScraper().scrape(ch, session): - print(item) + item.save("incoming/md/people") if __name__ == "__main__": From 9bf267119edec47dae5ec86e58ab9843fe21499e Mon Sep 17 00:00:00 2001 From: James Turk Date: Tue, 21 Jul 2020 16:37:43 -0400 Subject: [PATCH 5/9] scrape md district fix --- scrape/scrape_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrape/scrape_md.py b/scrape/scrape_md.py index 247d008e4c..94862dcf90 100644 --- a/scrape/scrape_md.py +++ b/scrape/scrape_md.py @@ -228,7 +228,7 @@ def __init__(self, url): def process_item(self, item): dd_text = XPath(".//dd/text()").match(item) - district = dd_text[2].strip() + district = dd_text[2].strip().split()[1] party = dd_text[4].strip() return dict( chamber="upper" if "senate" in self.url else "lower", From 7494cc753092bcf5bf220932d2b876d9daba3cb6 Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 27 Jul 2020 16:47:47 -0400 Subject: [PATCH 6/9] update merge to avoid multi-member issues --- scripts/merge.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/merge.py b/scripts/merge.py index 23bda1b51b..caba324029 100755 --- a/scripts/merge.py +++ b/scripts/merge.py @@ -3,6 +3,7 @@ import os import glob import click +import openstates_metadata as metadata from utils import get_filename, get_data_dir, load_yaml, dump_obj from retire import retire_person, move_file @@ -84,6 +85,14 @@ def compute_merge(obj1, obj2, prefix="", keep_both_ids=False): def incoming_merge(abbr, existing_people, new_people, retirement): unmatched = [] + seats_for_district = {} + state = metadata.lookup(abbr=abbr) + for chamber in state.chambers: + chtype = "legislature" if chamber.chamber_type == "unicameral" else chamber.chamber_type + seats_for_district[chtype] = { + district.name: district.num_seats for district in chamber.districts + } + # find candidate(s) for each new person for new in new_people: matched = False @@ -94,7 +103,8 @@ def incoming_merge(abbr, existing_people, new_people, retirement): role_match = False for role in existing["roles"]: role.pop("start_date", None) - if new["roles"][0] == role: + seats = seats_for_district[role["type"]].get(role["district"], 1) + if new["roles"][0] == role and seats == 1: role_match = True break if name_match or role_match: From 027c0f9744caae55e234143bcb5668da8688b04d Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 27 Jul 2020 17:01:39 -0400 Subject: [PATCH 7/9] MD: merge in progress --- ...s-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml | 1 + ...s-ec683444-373d-4be5-b186-42d583ee5a13.yml | 1 + ...a-f9cc215f-ddd6-41de-b55e-5c79e4cbd77f.yml | 1 + ...t-59a5bbf7-c5c9-436a-bf9a-61d996816297.yml | 4 ++- ...s-4bf0680f-fd5c-48a1-b6d3-73672f71048a.yml | 4 ++- ...r-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml | 28 ++++++++++++++++ ...n-0ddc9257-e4a4-4414-b21d-3467c8285806.yml | 4 ++- ...n-7636786f-1db3-4094-8527-e339576314d6.yml | 5 +-- ...i-eedea25f-65a7-4206-b3c1-66bbd8258723.yml | 4 ++- ...y-7bcb723d-68c2-4826-acab-0437aa27471f.yml | 4 ++- ...r-88aa2d42-9bca-4df7-b961-1516d5c1f73a.yml | 4 ++- ...s-2b26dc52-cb0c-4750-af6b-9c00e12eef29.yml | 9 ++++-- ...e-76812cdb-3d6d-458a-b864-feb72f363a8e.yml | 4 ++- ...y-67bca7ea-f624-4343-aa47-675140e4251a.yml | 4 ++- ...s-ad59d051-2efb-495f-b032-524d21a95e50.yml | 5 +-- ...i-515dbb17-6f5d-482a-8799-a2490be688fb.yml | 4 ++- ...s-0e4cb257-11b9-4772-b323-624ef28fb8b6.yml | 4 ++- ...s-4e1fee1d-1f1c-416b-9615-4171d4074db8.yml | 4 ++- ...r-f43bc1a5-01e8-416f-86ca-bd857bf6ed80.yml | 5 +-- ...n-86f0d40f-05f4-46a2-9c24-21ff52fdc6fe.yml | 4 ++- ...n-de3cab57-1771-4805-b984-618ad887e38e.yml | 4 ++- ...m-395603e6-0fdf-4cf6-bacb-18d98c848990.yml | 5 +-- ...n-c3ce882c-89d3-453c-a70f-b0ef9046fcf3.yml | 4 ++- ...y-d9828ed6-bdb0-414e-ba12-486b78362842.yml | 5 +-- ...n-eeb060ed-561b-4b1d-ad5f-5a982ea47bc6.yml | 4 ++- ...e-b0d22b6f-68c0-4dd0-892c-7844e6830693.yml | 4 ++- ...n-ab6c2e37-3818-467c-ad60-997274e897d0.yml | 4 ++- ...r-882548a3-099b-4763-9ec2-751ea362637b.yml | 25 +++++++++++++++ ...n-4eb57c5a-70c0-4b16-a247-53cf291bc38a.yml | 14 ++++++++ ...m-74c0f2f4-ad96-4cf7-aa3f-bc939e48fa70.yml | 4 ++- ...s-3c9356a4-fd55-43ff-809f-65568d0a8e53.yml | 14 ++++++++ ...h-6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1.yml | 14 ++++++++ ...I-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml | 31 ++++++++++++++++++ ...o-1a43a7cb-acbf-4974-8fe8-315cb674b27d.yml | 4 ++- ...d-0f51a760-22e6-4a05-8be0-983dffe30e42.yml | 5 +-- ...n-3b21ad36-c0bc-4341-9f55-c4529affc7f5.yml | 4 ++- ...t-99ff7e2c-87d6-49d5-b112-3807852511bc.yml | 5 +-- ...s-b7e16db2-0bde-4bed-8eb1-09f30ae66d4e.yml | 4 ++- ...m-b002bdd1-0622-4462-8623-e8bb52fde504.yml | 5 +-- ...y-be00c352-4825-4b80-97cd-954097e3a482.yml | 5 +-- ...n-ef1a4d48-39d0-4b6c-9ffc-a6d30b28476d.yml | 5 +-- ...r-00b4a416-e9ca-44ad-b808-58c19d6fb54a.yml | 4 ++- ...n-28685b0a-03b6-44b6-90f8-855bfcd46d72.yml | 4 ++- ...r-d848993b-65e9-4ea3-ab2a-dfaf796142cc.yml | 5 +-- ...s-73faf103-715f-425d-8642-0ecd0cf1d4c9.yml | 14 ++++++++ ...n-0418164e-2e86-4186-9f2d-327cb86b7eda.yml | 4 ++- ...x-a7409a52-200a-4b76-b31b-8f6085e606dc.yml | 14 ++++++++ ...s-55f598e0-524e-41e9-b728-10b98932d8ff.yml | 4 ++- ...o-ccc2ad8a-fa2a-432c-8e95-d301636547fc.yml | 4 ++- ...n-0692b705-a577-4edb-9da0-8c828e2473ab.yml | 4 ++- ...s-64b23008-9889-4fd1-9353-42888d9bc4bb.yml | 5 +-- ...y-ac5223df-8477-4cd7-90d7-7b150975fa89.yml | 4 ++- ...s-cd87b04a-34d3-4d81-aaf0-7e15a1df624a.yml | 4 ++- ...l-3235313d-d279-4aaf-97fd-476d4c79c11a.yml | 4 ++- ...s-26501511-8ecc-4d07-bc9a-bb463c3d248e.yml | 4 ++- ...n-c8851cc0-d707-49c5-939a-485fc7e14075.yml | 4 ++- ...y-597acecb-dead-4b8c-8201-fd58f7e74c21.yml | 4 ++- ...y-ea24b6b8-ecff-4a51-badf-001c8889c5df.yml | 5 +-- ...n-86c7130e-3ec7-4572-b885-47298f9decad.yml | 4 ++- ...e-cbf6aefa-a6aa-4de5-9237-d1c34e5c4930.yml | 4 ++- ...e-c29af24a-5fe8-4e41-9a33-2253e081c317.yml | 4 ++- ...r-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml | 28 ++++++++++++++++ ...o-2f6dc3da-2750-4c4a-b4cf-034c40f3cb31.yml | 5 +-- ...s-d3afbcc7-513f-4580-82ff-a10a0f8aad15.yml | 4 ++- ...h-08605eb9-8023-4d82-a945-16c2c82e0afc.yml | 4 ++- ...e-04eec23c-719e-46b1-ae56-f34de9207e8c.yml | 4 ++- ...i-14830b25-7188-44be-836f-2d3d0324dec1.yml | 5 +-- ...r-4ba2e69b-d9b2-49a5-8c35-e5bf7de7bac6.yml | 4 ++- ...l-396e14a6-1903-4a12-ad7b-aefae5263b0c.yml | 5 +-- ...s-72201809-94c8-4c48-a0be-18555a2d55fa.yml | 4 ++- ...t-9fbc0383-4845-42ae-a2db-06b16c6f6728.yml | 5 +-- ...y-d6ad9dff-6f4f-48c9-8806-d651a0d86f58.yml | 5 +-- ...n-4edadbc3-1635-4ce9-9b8c-1220f07e7b23.yml | 5 +-- ...l-0218a7f4-9904-426e-b676-be22eb714185.yml | 4 ++- ...n-7c2a7a4b-f847-4efa-baea-2e5633acdcd5.yml | 5 +-- ...s-4f0a99bb-9045-471a-88d2-1fea0ad8ccab.yml | 4 ++- ...i-da8ccc70-b951-42d3-96f4-3b58d32d92f1.yml | 4 ++- ...r-6f52bd64-0893-4c8a-ba1b-e2ecef9eb754.yml | 4 ++- ...s-eb368768-5e97-43c1-9b0e-72062436519a.yml | 4 ++- ...r-43ee08fa-dce5-4526-8242-17e3e70baad7.yml | 5 +-- ...t-297d462e-6cee-4faf-ab3e-4ded2ea6f916.yml | 4 ++- ...a-51573cf9-a7d7-40d5-bd9a-90e3042c4cab.yml | 5 +-- ...k-391fd87a-c569-4db7-b386-b20ccc714dd8.yml | 4 ++- ...y-208e3148-8653-4162-8c92-6ba02e15e59b.yml | 5 +-- ...k-5e096a5d-1598-49c1-ba34-758759953f2f.yml | 5 +-- ...s-03da7272-eadc-4ad3-ba4b-f06f60acbed0.yml | 4 ++- ...r-d2a4d2c5-192b-4545-bd00-58024b65e7b4.yml | 4 ++- ...t-f46d4649-7b8d-4287-a5fd-85154fe530d2.yml | 4 ++- ...e-0867a6dd-db6b-4c2f-8748-f9b4782d9a19.yml | 4 ++- ...n-a5a952f8-f001-4619-9056-103a1f4e4d8e.yml | 4 ++- ...z-84e203b4-277c-4e10-aeb3-a80158bdf525.yml | 4 ++- ...g-6a5dec66-3631-424f-aceb-6aa9f107cea1.yml | 4 ++- ...n-13771198-ddf4-4dfd-80f1-b4069ec55914.yml | 5 +-- ...k-366c0122-84a8-460e-bc98-93d4ca5f0176.yml | 4 ++- ...I-849b2ad5-f22a-4d8b-aaf5-d079b01e5916.yml | 5 +-- ...y-e57fb9b8-7870-4bd2-8f46-df05edf038ac.yml | 5 +-- ...r-0d479110-74e8-45dd-bc01-330a169918b1.yml | 5 +-- ...y-eea44ceb-5bec-458e-b22e-16351c5f98f9.yml | 4 ++- ...g-eebac21f-2ba7-4368-a8e9-fcc20672ad1e.yml | 4 ++- ...r-d9846189-aaed-4ca9-a59f-4a3146d72719.yml | 4 ++- ...s-1bfdc88d-62d4-4e89-9f60-ba4709a221be.yml | 4 ++- ...a-943d1601-904b-40dc-8b98-84bbb02851ab.yml | 4 ++- ...r-232b5c5d-87e8-4ce9-921c-8c05af96afd4.yml | 5 +-- ...s-b20802dc-16a1-41ac-bb46-a958ce7d6d58.yml | 4 ++- ...r-38379d8c-a63d-4e2b-88ee-ee6dcd646c95.yml | 5 +-- ...r-fe412f7a-cff0-4153-bfea-a0578f2e1aaa.yml | 4 ++- ...k-964890bc-9b86-4492-891f-812f58d4355d.yml | 4 ++- ...a-dcd83c80-dab5-4c22-be2f-0b4081af2f77.yml | 4 ++- ...e-b7119231-82fe-4bf6-8045-280f784308d9.yml | 4 ++- ...n-6d88ea30-7b4e-4dcb-8cc7-ed4bb6edc317.yml | 5 +-- ...z-3972ae32-865b-4f83-961f-d8a7ca703ad5.yml | 5 +-- ...i-832c64da-9793-49a2-8231-c62d0cd7078a.yml | 5 +-- ...o-7e53bc3f-236c-4722-a22c-d989c0bd84c8.yml | 14 ++++++++ ...n-d4354cae-a994-4b2d-863f-238322fc6135.yml | 5 +-- ...r-1403e204-8965-4cb4-adcb-6754808e119a.yml | 4 ++- ...h-2c2cebf4-5d3c-48c9-bd56-95481ba65c50.yml | 4 ++- ...e-6c4c1b4d-7c32-4d2b-83ab-d207f92e1818.yml | 5 +-- ...n-b86e252c-2904-4d28-9d2f-b13d854efa66.yml | 4 ++- ...r-77d4130a-be8c-46a7-adc4-08ecd11ea6ee.yml | 4 ++- ...g-5393ab25-fbd9-455b-8da2-76c53e955823.yml | 4 ++- ...r-5fff41d7-cea5-4e01-a4da-e4474d267691.yml | 27 ++++++++++++++++ ...n-07185e4b-2314-476e-9c3b-48959096f2a5.yml | 5 +-- ...i-e7d2b23f-1380-46a8-845e-ea139d0ed51e.yml | 4 ++- ...a-6e819331-2ab7-4a58-be19-1585dc2872ff.yml | 5 +-- ...n-0bdef1bb-ea31-4a27-937c-eb680ae67343.yml | 9 ++++-- ...n-d7346fb4-948a-4e86-8b06-5e43345e4b4a.yml | 4 ++- ...s-55cb04cb-cd28-44ed-a4a4-dcb2b064ede9.yml | 5 +-- ...h-e79608fa-7921-49f2-ba2e-d10f70008a5b.yml | 5 +-- ...n-66fe4760-a59b-4503-98d4-875408b7352f.yml | 4 ++- ...e-aef56355-ca46-45a2-8364-ac00a4cf001a.yml | 4 ++- ...h-8370ae8e-8e9b-4a0f-b741-0bd0f6db2038.yml | 4 ++- ...n-b120ed9c-3669-44e7-a5ef-710b716071e7.yml | 5 +-- ...h-79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897.yml | 14 ++++++++ ...y-5bdf592a-c502-4b60-8799-8ed681950475.yml | 4 ++- ...s-eb13f926-c0f1-426b-b0a7-63c324f9a558.yml | 5 +-- ...g-92f41e40-4782-4c52-81a1-de8f78e05ab1.yml | 4 ++- ...y-e20d321d-a656-4792-834b-ab102630ca82.yml | 4 ++- ...t-98b2bd07-c08e-468c-9037-2a3eb536d153.yml | 4 ++- ...e-36e6313f-b85b-4c14-9ff4-e23fc015d904.yml | 4 ++- ...s-23c9c495-1fe1-4258-bb15-7f1183ffc4fe.yml | 5 +-- ...y-a77b367d-3248-45f7-8714-ded55a24a582.yml | 4 ++- ...s-0e07b201-0a1a-4a45-af43-f4d9d779b409.yml | 14 ++++++++ ...e-7817a7bd-51a6-456a-a2df-4b9e3523d181.yml | 5 +-- ...n-23a68f14-b511-4326-aed4-374f51d5cbd9.yml | 5 +-- ...n-aa70aec7-1d13-4ac0-912d-408ae8ee0763.yml | 4 ++- ...e-15921e4d-a07c-4ad7-863c-1d8dfd2d6725.yml | 5 +-- ...g-8d598bfe-608b-4ffc-8925-81f9e96c021e.yml | 4 ++- ...n-6605f7aa-80cb-4ee0-8d0d-18cff943f158.yml | 4 ++- ...y-622eeed1-5fc2-46dd-9709-25d065ebd894.yml | 4 ++- ...e-f25013b8-d93b-46bf-a1ef-8b368731040d.yml | 5 +-- ...r-253942ff-e83a-46ca-a05a-2e8e8644b4c2.yml | 4 ++- ...a-544e1b98-6819-43dd-8033-2a19cb6ac1f8.yml | 4 ++- ...s-d0e4f14b-c4a3-485e-88f7-ea7a86f67ca1.yml | 4 ++- ...g-f84bc5c0-1a2f-4eac-8a7a-63c879ad56e5.yml | 4 ++- ...y-a8bf81cc-99c4-445f-a43c-f726fb928968.yml | 4 ++- ...r-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml | 25 +++++++++++++++ ...n-177ee919-8310-4485-9b07-041cd83b2947.yml | 5 +-- ...g-dae4192a-93c9-4a49-bc77-83e99825dad1.yml | 4 ++- ...g-9ec0fe7d-36ae-437b-9bcf-754da8e4e247.yml | 4 ++- ...e-b9f21b96-4bb5-43e8-a5d8-19cec0332315.yml | 5 +-- ...h-a649f616-ab89-4e4d-bfbe-4335d1d67d1a.yml | 5 +-- ...d-32a0f09e-394f-446c-93c7-9cff2ea28b83.yml | 4 ++- ...s-1eb2ab76-7cb6-48c9-9acd-dbe6df8638f2.yml | 4 ++- ...n-be45d2a1-057a-49ea-a810-5317478c26b1.yml | 14 ++++++++ ...h-4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed.yml | 14 ++++++++ ...n-77cad368-7e81-4ff2-91d8-62ecacd38fe7.yml | 11 +++---- ...s-1bad5583-acbc-451b-9425-0a8936f1e7b5.yml | 4 ++- ...b-7d7322ad-3110-478c-b94e-00f02a678940.yml | 4 ++- ...h-0f8f065b-2d2e-4da3-91d4-988f16c72ef1.yml | 5 +-- ...r-2271e390-772d-440c-9601-f72ed997092b.yml | 30 +++++++++++++++++ ...n-8733ef57-5d09-47f2-9a16-d96cdc43485b.yml | 5 +-- ...z-15b13c83-9ee7-43b6-a32a-f26d76573d54.yml | 4 ++- ...e-31b36a34-8e53-4b58-889f-221cf28c410c.yml | 4 ++- ...s-1cfdc0e8-7eed-411a-b931-cffa6479b51f.yml | 4 ++- ...s-37857422-fcb6-4545-9bd2-f962d8c84288.yml | 4 ++- ...r-04bcec29-909a-4d9a-8212-d1b2f24bf39d.yml | 4 ++- ...h-5038b5f5-d963-4269-8b17-9f513469797c.yml | 4 ++- ...y-ad9925ab-ab4a-46e9-a316-4d3a964736a3.yml | 4 ++- ...l-9b63f31e-5bc0-47bf-a901-0a8dcc2a67b7.yml | 4 ++- ...r-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml | 28 ++++++++++++++++ ...s-87b2e7c0-aa6e-49ca-99a0-ead8d114ed15.yml | 5 +-- ...n-05e3beb8-e31a-4046-8704-b287ea797146.yml | 4 ++- ...y-4d13bf0a-908c-4292-b5c9-411026ba2c17.yml | 4 ++- ...t-5d11064b-6757-42f7-86fa-3023fefb6c10.yml | 5 +-- ...r-b982cab0-0d2e-46ae-8e22-51f68e7aac82.yml | 5 +-- ...r-54b2fd1f-3a2f-45d1-895b-587733b1a912.yml | 5 +-- ...r-7bc2cd0d-c213-4412-a193-5a6d575d67d5.yml | 4 ++- ...n-ed6c6e8e-a50c-4fce-86a8-0d9d7a75aa1f.yml | 5 +-- ...l-f8542a24-7b8f-4732-b856-8f4979b74530.yml | 4 ++- ...r-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml | 32 +++++++++++++++++++ ...l-7616b0d4-487f-4667-b92c-b09f628235d1.yml | 4 ++- ...n-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml | 1 + ...m-1208a8a6-4b74-42c3-b422-2910ff3128db.yml | 1 + ...y-a61f9662-6988-4bef-ac5f-dd09814a9772.yml | 1 + 194 files changed, 915 insertions(+), 234 deletions(-) create mode 100644 data/md/people/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml create mode 100644 data/md/people/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml create mode 100644 data/md/people/Carl-Jackson-4eb57c5a-70c0-4b16-a247-53cf291bc38a.yml create mode 100644 data/md/people/Catherine-M-Forbes-3c9356a4-fd55-43ff-809f-65568d0a8e53.yml create mode 100644 data/md/people/Chanel-Branch-6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1.yml create mode 100644 data/md/people/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml create mode 100644 data/md/people/Dana-Jones-73faf103-715f-425d-8642-0ecd0cf1d4c9.yml create mode 100644 data/md/people/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml create mode 100644 data/md/people/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml create mode 100644 data/md/people/Lisa-Belcastro-7e53bc3f-236c-4722-a22c-d989c0bd84c8.yml create mode 100644 data/md/people/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml create mode 100644 data/md/people/Mike-Griffith-79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897.yml create mode 100644 data/md/people/Nicole-A-Williams-0e07b201-0a1a-4a45-af43-f4d9d779b409.yml create mode 100644 data/md/people/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml create mode 100644 data/md/people/Shaneka-Henson-be45d2a1-057a-49ea-a810-5317478c26b1.yml create mode 100644 data/md/people/Sheila-Ruth-4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed.yml create mode 100644 data/md/people/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml create mode 100644 data/md/people/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml create mode 100644 data/md/people/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml rename data/md/{people => retired}/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml (97%) rename data/md/{people => retired}/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml (97%) rename data/md/{people => retired}/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml (97%) diff --git a/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml b/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml index ff928e823e..5b1f08fcad 100644 --- a/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml +++ b/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml @@ -29,6 +29,7 @@ memberships: name: Michael J. Hough - id: ocd-person/1208a8a6-4b74-42c3-b422-2910ff3128db name: Shirley Nathan-Pulliam + end_date: '2019-12-01' - id: ocd-person/4c9d020a-7036-462e-870f-29691ccf8448 name: Kathy Afzali end_date: '2019-01-08' diff --git a/data/md/organizations/Education-Health-and-Environmental-Affairs-ec683444-373d-4be5-b186-42d583ee5a13.yml b/data/md/organizations/Education-Health-and-Environmental-Affairs-ec683444-373d-4be5-b186-42d583ee5a13.yml index 3b2314a40a..f288c761db 100644 --- a/data/md/organizations/Education-Health-and-Environmental-Affairs-ec683444-373d-4be5-b186-42d583ee5a13.yml +++ b/data/md/organizations/Education-Health-and-Environmental-Affairs-ec683444-373d-4be5-b186-42d583ee5a13.yml @@ -21,6 +21,7 @@ memberships: name: Cheryl C. Kagan - id: ocd-person/1208a8a6-4b74-42c3-b422-2910ff3128db name: Shirley Nathan-Pulliam + end_date: '2019-12-01' - id: ocd-person/0728c86e-8fca-4d87-bdfb-f735ed99e88c name: Barbara Robinson end_date: '2019-01-08' diff --git a/data/md/organizations/The-Chesapeake-and-Atlantic-Coastal-Bays-Critical-Area-f9cc215f-ddd6-41de-b55e-5c79e4cbd77f.yml b/data/md/organizations/The-Chesapeake-and-Atlantic-Coastal-Bays-Critical-Area-f9cc215f-ddd6-41de-b55e-5c79e4cbd77f.yml index 4a54e562e6..9936bb9ba5 100644 --- a/data/md/organizations/The-Chesapeake-and-Atlantic-Coastal-Bays-Critical-Area-f9cc215f-ddd6-41de-b55e-5c79e4cbd77f.yml +++ b/data/md/organizations/The-Chesapeake-and-Atlantic-Coastal-Bays-Critical-Area-f9cc215f-ddd6-41de-b55e-5c79e4cbd77f.yml @@ -14,6 +14,7 @@ memberships: role: house chair - id: ocd-person/1208a8a6-4b74-42c3-b422-2910ff3128db name: Shirley Nathan-Pulliam + end_date: '2019-12-01' - id: ocd-person/6a5dec66-3631-424f-aceb-6aa9f107cea1 name: Johnny Ray Salling - id: ocd-person/b0d22b6f-68c0-4dd0-892c-7844e6830693 diff --git a/data/md/people/Adelaide-C-Eckardt-59a5bbf7-c5c9-436a-bf9a-61d996816297.yml b/data/md/people/Adelaide-C-Eckardt-59a5bbf7-c5c9-436a-bf9a-61d996816297.yml index ebc6e0cb85..b4b56baaff 100644 --- a/data/md/people/Adelaide-C-Eckardt-59a5bbf7-c5c9-436a-bf9a-61d996816297.yml +++ b/data/md/people/Adelaide-C-Eckardt-59a5bbf7-c5c9-436a-bf9a-61d996816297.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3590 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=eckardt&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/eckardt sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=eckardt&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/eckardt.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/eckardt +image: http://mgaleg.maryland.gov/2020RS/images/eckardt.jpg other_identifiers: - identifier: MDL000272 scheme: legacy_openstates diff --git a/data/md/people/Adrienne-A-Jones-4bf0680f-fd5c-48a1-b6d3-73672f71048a.yml b/data/md/people/Adrienne-A-Jones-4bf0680f-fd5c-48a1-b6d3-73672f71048a.yml index 9b3e168f44..39b751c2ab 100644 --- a/data/md/people/Adrienne-A-Jones-4bf0680f-fd5c-48a1-b6d3-73672f71048a.yml +++ b/data/md/people/Adrienne-A-Jones-4bf0680f-fd5c-48a1-b6d3-73672f71048a.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3391 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jones&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jones sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jones&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/jones.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jones +image: http://mgaleg.maryland.gov/2020RS/images/jones.jpg other_identifiers: - identifier: MDL000304 scheme: legacy_openstates diff --git a/data/md/people/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml b/data/md/people/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml new file mode 100644 index 0000000000..271f08c9e7 --- /dev/null +++ b/data/md/people/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml @@ -0,0 +1,28 @@ +id: ocd-person/65a3ac74-d1f1-4125-a17c-2905afcca8b0 +name: Alfred C. Carr, Jr. +party: +- name: Democratic +roles: +- district: '18' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +contact_details: +- address: 222 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: alfred.carr@house.state.md.us + fax: 301-858-3053 + note: Capitol Office + voice: 410-841-3638 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carr&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carr +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carr&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carr +image: http://mgaleg.maryland.gov/2020RS/images/carr.jpg +other_identifiers: +- identifier: MDL000260 + scheme: legacy_openstates +- identifier: MDL000491 + scheme: legacy_openstates +given_name: Alfred +family_name: Carr diff --git a/data/md/people/Alonzo-T-Washington-0ddc9257-e4a4-4414-b21d-3467c8285806.yml b/data/md/people/Alonzo-T-Washington-0ddc9257-e4a4-4414-b21d-3467c8285806.yml index 85d45a1420..12aa1de3f0 100644 --- a/data/md/people/Alonzo-T-Washington-0ddc9257-e4a4-4414-b21d-3467c8285806.yml +++ b/data/md/people/Alonzo-T-Washington-0ddc9257-e4a4-4414-b21d-3467c8285806.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3652 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=washington%20a&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/washington%20a sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=washington%20a&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/washington a.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/washington%20a +image: http://mgaleg.maryland.gov/2020RS/images/washington a.jpg other_identifiers: - identifier: MDL000605 scheme: legacy_openstates diff --git a/data/md/people/Andrea-Fletcher-Harrison-7636786f-1db3-4094-8527-e339576314d6.yml b/data/md/people/Andrea-Fletcher-Harrison-7636786f-1db3-4094-8527-e339576314d6.yml index 851ccb1092..41efa15eba 100644 --- a/data/md/people/Andrea-Fletcher-Harrison-7636786f-1db3-4094-8527-e339576314d6.yml +++ b/data/md/people/Andrea-Fletcher-Harrison-7636786f-1db3-4094-8527-e339576314d6.yml @@ -6,7 +6,6 @@ roles: - district: '24' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 204 House Office Building;6 Bladen Streeta;Annapolis, MD 21401 email: andrea.harrison@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3919 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=harrison01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/harrison01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=harrison01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/harrison01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/harrison01 +image: http://mgaleg.maryland.gov/2020RS/images/harrison01.jpg given_name: Andrea family_name: Harrison diff --git a/data/md/people/Andrew-A-Serafini-eedea25f-65a7-4206-b3c1-66bbd8258723.yml b/data/md/people/Andrew-A-Serafini-eedea25f-65a7-4206-b3c1-66bbd8258723.yml index 19cc80129c..60d5686052 100644 --- a/data/md/people/Andrew-A-Serafini-eedea25f-65a7-4206-b3c1-66bbd8258723.yml +++ b/data/md/people/Andrew-A-Serafini-eedea25f-65a7-4206-b3c1-66bbd8258723.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3903 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=serafini01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/serafini01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=serafini01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/serafini01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/serafini01 +image: http://mgaleg.maryland.gov/2020RS/images/serafini01.jpg other_identifiers: - identifier: MDL000354 scheme: legacy_openstates diff --git a/data/md/people/Anne-Healey-7bcb723d-68c2-4826-acab-0437aa27471f.yml b/data/md/people/Anne-Healey-7bcb723d-68c2-4826-acab-0437aa27471f.yml index 69b6b2eb7d..a06705415b 100644 --- a/data/md/people/Anne-Healey-7bcb723d-68c2-4826-acab-0437aa27471f.yml +++ b/data/md/people/Anne-Healey-7bcb723d-68c2-4826-acab-0437aa27471f.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3961 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=healey&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/healey sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=healey&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/healey.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/healey +image: http://mgaleg.maryland.gov/2020RS/images/healey.jpg other_identifiers: - identifier: MDL000290 scheme: legacy_openstates diff --git a/data/md/people/Anne-R-Kaiser-88aa2d42-9bca-4df7-b961-1516d5c1f73a.yml b/data/md/people/Anne-R-Kaiser-88aa2d42-9bca-4df7-b961-1516d5c1f73a.yml index 63d2c08a77..a9edb2ca64 100644 --- a/data/md/people/Anne-R-Kaiser-88aa2d42-9bca-4df7-b961-1516d5c1f73a.yml +++ b/data/md/people/Anne-R-Kaiser-88aa2d42-9bca-4df7-b961-1516d5c1f73a.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3036 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kaiser&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kaiser sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kaiser&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kaiser.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kaiser +image: http://mgaleg.maryland.gov/2020RS/images/kaiser.jpg other_identifiers: - identifier: MDL000306 scheme: legacy_openstates diff --git a/data/md/people/Antonio-L-Hayes-2b26dc52-cb0c-4750-af6b-9c00e12eef29.yml b/data/md/people/Antonio-L-Hayes-2b26dc52-cb0c-4750-af6b-9c00e12eef29.yml index 1dac8bb0b1..9f7f62cd02 100644 --- a/data/md/people/Antonio-L-Hayes-2b26dc52-cb0c-4750-af6b-9c00e12eef29.yml +++ b/data/md/people/Antonio-L-Hayes-2b26dc52-cb0c-4750-af6b-9c00e12eef29.yml @@ -1,5 +1,5 @@ id: ocd-person/2b26dc52-cb0c-4750-af6b-9c00e12eef29 -name: Antonio L. Hayes +name: Antonio Hayes party: - name: Democratic roles: @@ -10,7 +10,6 @@ roles: - district: '40' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 222 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: antonio.hayes@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3656 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hayes02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hayes02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hayes02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hayes02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hayes02 +image: http://mgaleg.maryland.gov/2020RS/images/hayes02.jpg other_identifiers: - identifier: MDL000632 scheme: legacy_openstates @@ -28,3 +29,5 @@ other_identifiers: scheme: legacy_openstates given_name: Antonio family_name: Hayes +other_names: +- name: Antonio L. Hayes diff --git a/data/md/people/April-Rose-76812cdb-3d6d-458a-b864-feb72f363a8e.yml b/data/md/people/April-Rose-76812cdb-3d6d-458a-b864-feb72f363a8e.yml index 3d7a0b0c46..bed9d978f0 100644 --- a/data/md/people/April-Rose-76812cdb-3d6d-458a-b864-feb72f363a8e.yml +++ b/data/md/people/April-Rose-76812cdb-3d6d-458a-b864-feb72f363a8e.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3070 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rose01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rose01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rose01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/rose01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rose01 +image: http://mgaleg.maryland.gov/2020RS/images/rose01.jpg other_identifiers: - identifier: MDL000718 scheme: legacy_openstates diff --git a/data/md/people/Ariana-B-Kelly-67bca7ea-f624-4343-aa47-675140e4251a.yml b/data/md/people/Ariana-B-Kelly-67bca7ea-f624-4343-aa47-675140e4251a.yml index 94cb51fa00..fefffb85ad 100644 --- a/data/md/people/Ariana-B-Kelly-67bca7ea-f624-4343-aa47-675140e4251a.yml +++ b/data/md/people/Ariana-B-Kelly-67bca7ea-f624-4343-aa47-675140e4251a.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3642 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kelly%20a&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kelly%20a sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kelly%20a&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kelly a.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kelly%20a +image: http://mgaleg.maryland.gov/2020RS/images/kelly a.jpg other_identifiers: - identifier: MDL000400 scheme: legacy_openstates diff --git a/data/md/people/Arthur-Ellis-ad59d051-2efb-495f-b032-524d21a95e50.yml b/data/md/people/Arthur-Ellis-ad59d051-2efb-495f-b032-524d21a95e50.yml index 8c954b60e4..383e0edeb8 100644 --- a/data/md/people/Arthur-Ellis-ad59d051-2efb-495f-b032-524d21a95e50.yml +++ b/data/md/people/Arthur-Ellis-ad59d051-2efb-495f-b032-524d21a95e50.yml @@ -6,7 +6,6 @@ roles: - district: '28' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 302 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: arthur.ellis@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3616 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ellis01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ellis01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ellis01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ellis01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ellis01 +image: http://mgaleg.maryland.gov/2020RS/images/ellis01.jpg given_name: Arthur family_name: Ellis diff --git a/data/md/people/Barrie-S-Ciliberti-515dbb17-6f5d-482a-8799-a2490be688fb.yml b/data/md/people/Barrie-S-Ciliberti-515dbb17-6f5d-482a-8799-a2490be688fb.yml index e852ee1f3f..5db3d979d8 100644 --- a/data/md/people/Barrie-S-Ciliberti-515dbb17-6f5d-482a-8799-a2490be688fb.yml +++ b/data/md/people/Barrie-S-Ciliberti-515dbb17-6f5d-482a-8799-a2490be688fb.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3080 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ciliberti01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ciliberti01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ciliberti01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ciliberti01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ciliberti01 +image: http://mgaleg.maryland.gov/2020RS/images/ciliberti01.jpg other_identifiers: - identifier: MDL000716 scheme: legacy_openstates diff --git a/data/md/people/Ben-Barnes-0e4cb257-11b9-4772-b323-624ef28fb8b6.yml b/data/md/people/Ben-Barnes-0e4cb257-11b9-4772-b323-624ef28fb8b6.yml index 5c3e14cc8e..14fc706802 100644 --- a/data/md/people/Ben-Barnes-0e4cb257-11b9-4772-b323-624ef28fb8b6.yml +++ b/data/md/people/Ben-Barnes-0e4cb257-11b9-4772-b323-624ef28fb8b6.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3046 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barnes&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barnes sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barnes&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/barnes.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barnes +image: http://mgaleg.maryland.gov/2020RS/images/barnes.jpg other_identifiers: - identifier: MDL000241 scheme: legacy_openstates diff --git a/data/md/people/Benjamin-Brooks-4e1fee1d-1f1c-416b-9615-4171d4074db8.yml b/data/md/people/Benjamin-Brooks-4e1fee1d-1f1c-416b-9615-4171d4074db8.yml index ae518e4746..7728232530 100644 --- a/data/md/people/Benjamin-Brooks-4e1fee1d-1f1c-416b-9615-4171d4074db8.yml +++ b/data/md/people/Benjamin-Brooks-4e1fee1d-1f1c-416b-9615-4171d4074db8.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3352 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=brooks01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/brooks01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=brooks01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/brooks01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/brooks01 +image: http://mgaleg.maryland.gov/2020RS/images/brooks01.jpg other_identifiers: - identifier: MDL000625 scheme: legacy_openstates diff --git a/data/md/people/Benjamin-F-Kramer-f43bc1a5-01e8-416f-86ca-bd857bf6ed80.yml b/data/md/people/Benjamin-F-Kramer-f43bc1a5-01e8-416f-86ca-bd857bf6ed80.yml index 87f9fa6ffb..09559663a9 100644 --- a/data/md/people/Benjamin-F-Kramer-f43bc1a5-01e8-416f-86ca-bd857bf6ed80.yml +++ b/data/md/people/Benjamin-F-Kramer-f43bc1a5-01e8-416f-86ca-bd857bf6ed80.yml @@ -10,7 +10,6 @@ roles: - district: '19' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 401 Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: benjamin.kramer@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3151 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kramer02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kramer02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kramer02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kramer02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kramer02 +image: http://mgaleg.maryland.gov/2020RS/images/kramer02.jpg other_identifiers: - identifier: MDL000311 scheme: legacy_openstates diff --git a/data/md/people/Bill-Ferguson-86f0d40f-05f4-46a2-9c24-21ff52fdc6fe.yml b/data/md/people/Bill-Ferguson-86f0d40f-05f4-46a2-9c24-21ff52fdc6fe.yml index 7a677ee164..c9d9f99d1b 100644 --- a/data/md/people/Bill-Ferguson-86f0d40f-05f4-46a2-9c24-21ff52fdc6fe.yml +++ b/data/md/people/Bill-Ferguson-86f0d40f-05f4-46a2-9c24-21ff52fdc6fe.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3600 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ferguson&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ferguson sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ferguson&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ferguson.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ferguson +image: http://mgaleg.maryland.gov/2020RS/images/ferguson.jpg other_identifiers: - identifier: MDL000379 scheme: legacy_openstates diff --git a/data/md/people/Bonnie-Cullison-de3cab57-1771-4805-b984-618ad887e38e.yml b/data/md/people/Bonnie-Cullison-de3cab57-1771-4805-b984-618ad887e38e.yml index 9ff869a2fb..8323383538 100644 --- a/data/md/people/Bonnie-Cullison-de3cab57-1771-4805-b984-618ad887e38e.yml +++ b/data/md/people/Bonnie-Cullison-de3cab57-1771-4805-b984-618ad887e38e.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3883 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cullison&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cullison sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cullison&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/cullison.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cullison +image: http://mgaleg.maryland.gov/2020RS/images/cullison.jpg other_identifiers: - identifier: MDL000393 scheme: legacy_openstates diff --git a/data/md/people/Brian-Chisholm-395603e6-0fdf-4cf6-bacb-18d98c848990.yml b/data/md/people/Brian-Chisholm-395603e6-0fdf-4cf6-bacb-18d98c848990.yml index 1e6e70edb6..3d35c1a3e1 100644 --- a/data/md/people/Brian-Chisholm-395603e6-0fdf-4cf6-bacb-18d98c848990.yml +++ b/data/md/people/Brian-Chisholm-395603e6-0fdf-4cf6-bacb-18d98c848990.yml @@ -6,7 +6,6 @@ roles: - district: 31B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 156 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: brian.chisholm@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3206 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=chisholm01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/chisholm01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=chisholm01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/chisholm01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/chisholm01 +image: http://mgaleg.maryland.gov/2020RS/images/chisholm01.jpg given_name: Brian family_name: Chisholm diff --git a/data/md/people/Brian-J-Feldman-c3ce882c-89d3-453c-a70f-b0ef9046fcf3.yml b/data/md/people/Brian-J-Feldman-c3ce882c-89d3-453c-a70f-b0ef9046fcf3.yml index 92590af934..fb9dd79135 100644 --- a/data/md/people/Brian-J-Feldman-c3ce882c-89d3-453c-a70f-b0ef9046fcf3.yml +++ b/data/md/people/Brian-J-Feldman-c3ce882c-89d3-453c-a70f-b0ef9046fcf3.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3169 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=feldman&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/feldman sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=feldman&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/feldman.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/feldman +image: http://mgaleg.maryland.gov/2020RS/images/feldman.jpg other_identifiers: - identifier: MDL000275 scheme: legacy_openstates diff --git a/data/md/people/Brian-M-Crosby-d9828ed6-bdb0-414e-ba12-486b78362842.yml b/data/md/people/Brian-M-Crosby-d9828ed6-bdb0-414e-ba12-486b78362842.yml index 3627e97f22..3942e606ae 100644 --- a/data/md/people/Brian-M-Crosby-d9828ed6-bdb0-414e-ba12-486b78362842.yml +++ b/data/md/people/Brian-M-Crosby-d9828ed6-bdb0-414e-ba12-486b78362842.yml @@ -6,7 +6,6 @@ roles: - district: 29B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 216 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: brian.crosby@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3277 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=crosby01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/crosby01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=crosby01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/crosby01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/crosby01 +image: http://mgaleg.maryland.gov/2020RS/images/crosby01.jpg given_name: Brian family_name: Crosby diff --git a/data/md/people/Brooke-E-Lierman-eeb060ed-561b-4b1d-ad5f-5a982ea47bc6.yml b/data/md/people/Brooke-E-Lierman-eeb060ed-561b-4b1d-ad5f-5a982ea47bc6.yml index e4ac308448..634da82e53 100644 --- a/data/md/people/Brooke-E-Lierman-eeb060ed-561b-4b1d-ad5f-5a982ea47bc6.yml +++ b/data/md/people/Brooke-E-Lierman-eeb060ed-561b-4b1d-ad5f-5a982ea47bc6.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3319 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lierman01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lierman01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lierman01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lierman01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lierman01 +image: http://mgaleg.maryland.gov/2020RS/images/lierman01.jpg other_identifiers: - identifier: MDL000688 scheme: legacy_openstates diff --git a/data/md/people/Bryan-W-Simonaire-b0d22b6f-68c0-4dd0-892c-7844e6830693.yml b/data/md/people/Bryan-W-Simonaire-b0d22b6f-68c0-4dd0-892c-7844e6830693.yml index a891541891..e653dd3d59 100644 --- a/data/md/people/Bryan-W-Simonaire-b0d22b6f-68c0-4dd0-892c-7844e6830693.yml +++ b/data/md/people/Bryan-W-Simonaire-b0d22b6f-68c0-4dd0-892c-7844e6830693.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3658 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=simonaire&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/simonaire sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=simonaire&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/simonaire.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/simonaire +image: http://mgaleg.maryland.gov/2020RS/images/simonaire.jpg other_identifiers: - identifier: MDL000233 scheme: legacy_openstates diff --git a/data/md/people/C-T-Wilson-ab6c2e37-3818-467c-ad60-997274e897d0.yml b/data/md/people/C-T-Wilson-ab6c2e37-3818-467c-ad60-997274e897d0.yml index 9d3de4b965..f8babbd8f9 100644 --- a/data/md/people/C-T-Wilson-ab6c2e37-3818-467c-ad60-997274e897d0.yml +++ b/data/md/people/C-T-Wilson-ab6c2e37-3818-467c-ad60-997274e897d0.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3325 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wilson&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wilson sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wilson&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/wilson.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wilson +image: http://mgaleg.maryland.gov/2020RS/images/wilson.jpg other_identifiers: - identifier: MDL000416 scheme: legacy_openstates diff --git a/data/md/people/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml b/data/md/people/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml new file mode 100644 index 0000000000..db73187369 --- /dev/null +++ b/data/md/people/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml @@ -0,0 +1,25 @@ +id: ocd-person/882548a3-099b-4763-9ec2-751ea362637b +name: Carl Anderton, Jr. +party: +- name: Republican +roles: +- district: 38B + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +contact_details: +- address: 310 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: Carl.Anderton@house.state.md.us + note: Capitol Office + voice: 410-841-3431 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderton01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderton01 +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderton01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderton01 +image: http://mgaleg.maryland.gov/2020RS/images/anderton01.jpg +other_identifiers: +- identifier: MDL000684 + scheme: legacy_openstates +given_name: Carl +family_name: Anderton diff --git a/data/md/people/Carl-Jackson-4eb57c5a-70c0-4b16-a247-53cf291bc38a.yml b/data/md/people/Carl-Jackson-4eb57c5a-70c0-4b16-a247-53cf291bc38a.yml new file mode 100644 index 0000000000..295b94e602 --- /dev/null +++ b/data/md/people/Carl-Jackson-4eb57c5a-70c0-4b16-a247-53cf291bc38a.yml @@ -0,0 +1,14 @@ +id: ocd-person/4eb57c5a-70c0-4b16-a247-53cf291bc38a +name: Carl Jackson +party: +- name: Democratic +roles: +- district: '8' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jackson02 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jackson02 +image: http://mgaleg.maryland.gov/2020RS/images/jackson02.jpg +contact_details: [] diff --git a/data/md/people/Carol-L-Krimm-74c0f2f4-ad96-4cf7-aa3f-bc939e48fa70.yml b/data/md/people/Carol-L-Krimm-74c0f2f4-ad96-4cf7-aa3f-bc939e48fa70.yml index 4a458b2171..79661e0ae3 100644 --- a/data/md/people/Carol-L-Krimm-74c0f2f4-ad96-4cf7-aa3f-bc939e48fa70.yml +++ b/data/md/people/Carol-L-Krimm-74c0f2f4-ad96-4cf7-aa3f-bc939e48fa70.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3472 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=krimm01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/krimm01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=krimm01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/krimm01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/krimm01 +image: http://mgaleg.maryland.gov/2020RS/images/krimm01.jpg other_identifiers: - identifier: MDL000672 scheme: legacy_openstates diff --git a/data/md/people/Catherine-M-Forbes-3c9356a4-fd55-43ff-809f-65568d0a8e53.yml b/data/md/people/Catherine-M-Forbes-3c9356a4-fd55-43ff-809f-65568d0a8e53.yml new file mode 100644 index 0000000000..c0a28b83bd --- /dev/null +++ b/data/md/people/Catherine-M-Forbes-3c9356a4-fd55-43ff-809f-65568d0a8e53.yml @@ -0,0 +1,14 @@ +id: ocd-person/3c9356a4-fd55-43ff-809f-65568d0a8e53 +name: Catherine M. Forbes +party: +- name: Democratic +roles: +- district: 42A + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/forbes01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/forbes01 +image: http://mgaleg.maryland.gov/2020RS/images/forbes01.jpg +contact_details: [] diff --git a/data/md/people/Chanel-Branch-6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1.yml b/data/md/people/Chanel-Branch-6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1.yml new file mode 100644 index 0000000000..336210680e --- /dev/null +++ b/data/md/people/Chanel-Branch-6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1.yml @@ -0,0 +1,14 @@ +id: ocd-person/6b69fda0-b7aa-4dd2-9d28-9dfb517a21a1 +name: Chanel Branch +party: +- name: Democratic +roles: +- district: '45' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/branch01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/branch01 +image: http://mgaleg.maryland.gov/2020RS/images/branch01.jpg +contact_details: [] diff --git a/data/md/people/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml b/data/md/people/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml new file mode 100644 index 0000000000..c765becaf2 --- /dev/null +++ b/data/md/people/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml @@ -0,0 +1,31 @@ +id: ocd-person/a111b899-ab75-4934-a6e9-a9c8be9bc70d +name: Charles E. Sydnor, III +party: +- name: Democratic +roles: +- district: 44B + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower + end_date: 2019-12-30 +- district: '44' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper + start_date: 2019-12-30 +contact_details: +- address: 306 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: Charles.Sydnor@house.state.md.us + fax: 410-841-3537 + note: Capitol Office + voice: 410-841-3802 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sydnor01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sydnor02 +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sydnor01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sydnor02 +image: http://mgaleg.maryland.gov/2020RS/images/sydnor02.jpg +other_identifiers: +- identifier: MDL000652 + scheme: legacy_openstates +given_name: Charles +family_name: Sydnor diff --git a/data/md/people/Charles-J-Otto-1a43a7cb-acbf-4974-8fe8-315cb674b27d.yml b/data/md/people/Charles-J-Otto-1a43a7cb-acbf-4974-8fe8-315cb674b27d.yml index 4a213d6d49..0515264681 100644 --- a/data/md/people/Charles-J-Otto-1a43a7cb-acbf-4974-8fe8-315cb674b27d.yml +++ b/data/md/people/Charles-J-Otto-1a43a7cb-acbf-4974-8fe8-315cb674b27d.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3433 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=otto&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/otto sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=otto&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/otto.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/otto +image: http://mgaleg.maryland.gov/2020RS/images/otto.jpg other_identifiers: - identifier: MDL000406 scheme: legacy_openstates diff --git a/data/md/people/Charlotte-Crutchfield-0f51a760-22e6-4a05-8be0-983dffe30e42.yml b/data/md/people/Charlotte-Crutchfield-0f51a760-22e6-4a05-8be0-983dffe30e42.yml index 7cb241135f..663dfc27be 100644 --- a/data/md/people/Charlotte-Crutchfield-0f51a760-22e6-4a05-8be0-983dffe30e42.yml +++ b/data/md/people/Charlotte-Crutchfield-0f51a760-22e6-4a05-8be0-983dffe30e42.yml @@ -6,7 +6,6 @@ roles: - district: '19' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 226 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: charlotte.crutchfield@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3485 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=crutchfield01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/crutchfield01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=crutchfield01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/crutchfield01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/crutchfield01 +image: http://mgaleg.maryland.gov/2020RS/images/crutchfield01.jpg given_name: Charlotte family_name: Crutchfield diff --git a/data/md/people/Cheryl-C-Kagan-3b21ad36-c0bc-4341-9f55-c4529affc7f5.yml b/data/md/people/Cheryl-C-Kagan-3b21ad36-c0bc-4341-9f55-c4529affc7f5.yml index f5454d577f..0777a16778 100644 --- a/data/md/people/Cheryl-C-Kagan-3b21ad36-c0bc-4341-9f55-c4529affc7f5.yml +++ b/data/md/people/Cheryl-C-Kagan-3b21ad36-c0bc-4341-9f55-c4529affc7f5.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3134 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kagan01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kagan01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kagan01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kagan01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kagan01 +image: http://mgaleg.maryland.gov/2020RS/images/kagan01.jpg other_identifiers: - identifier: MDL000624 scheme: legacy_openstates diff --git a/data/md/people/Chris-West-99ff7e2c-87d6-49d5-b112-3807852511bc.yml b/data/md/people/Chris-West-99ff7e2c-87d6-49d5-b112-3807852511bc.yml index 42c81c3e04..dd834a9f35 100644 --- a/data/md/people/Chris-West-99ff7e2c-87d6-49d5-b112-3807852511bc.yml +++ b/data/md/people/Chris-West-99ff7e2c-87d6-49d5-b112-3807852511bc.yml @@ -10,7 +10,6 @@ roles: - district: '42' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 303 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: chris.west@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3648 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=west02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/west02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=west02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/west02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/west02 +image: http://mgaleg.maryland.gov/2020RS/images/west02.jpg other_identifiers: - identifier: MDL000666 scheme: legacy_openstates diff --git a/data/md/people/Christopher-T-Adams-b7e16db2-0bde-4bed-8eb1-09f30ae66d4e.yml b/data/md/people/Christopher-T-Adams-b7e16db2-0bde-4bed-8eb1-09f30ae66d4e.yml index 3eec432e63..93814eaf97 100644 --- a/data/md/people/Christopher-T-Adams-b7e16db2-0bde-4bed-8eb1-09f30ae66d4e.yml +++ b/data/md/people/Christopher-T-Adams-b7e16db2-0bde-4bed-8eb1-09f30ae66d4e.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3343 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=adams01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/adams01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=adams01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/adams01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/adams01 +image: http://mgaleg.maryland.gov/2020RS/images/adams01.jpg other_identifiers: - identifier: MDL000697 scheme: legacy_openstates diff --git a/data/md/people/Clarence-K-Lam-b002bdd1-0622-4462-8623-e8bb52fde504.yml b/data/md/people/Clarence-K-Lam-b002bdd1-0622-4462-8623-e8bb52fde504.yml index 5d211c8f2d..eaa5f1c9c4 100644 --- a/data/md/people/Clarence-K-Lam-b002bdd1-0622-4462-8623-e8bb52fde504.yml +++ b/data/md/people/Clarence-K-Lam-b002bdd1-0622-4462-8623-e8bb52fde504.yml @@ -10,7 +10,6 @@ roles: - district: '12' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 420 Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: clarence.lam@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3653 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lam02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lam02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lam02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lam02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lam02 +image: http://mgaleg.maryland.gov/2020RS/images/lam02.jpg other_identifiers: - identifier: MDL000643 scheme: legacy_openstates diff --git a/data/md/people/Cory-V-McCray-be00c352-4825-4b80-97cd-954097e3a482.yml b/data/md/people/Cory-V-McCray-be00c352-4825-4b80-97cd-954097e3a482.yml index 664c5c0485..0edd755d06 100644 --- a/data/md/people/Cory-V-McCray-be00c352-4825-4b80-97cd-954097e3a482.yml +++ b/data/md/people/Cory-V-McCray-be00c352-4825-4b80-97cd-954097e3a482.yml @@ -10,7 +10,6 @@ roles: - district: '45' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 221 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: cory.mccray@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3165 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mccray02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mccray02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mccray02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mccray02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mccray02 +image: http://mgaleg.maryland.gov/2020RS/images/mccray02.jpg other_identifiers: - identifier: MDL000640 scheme: legacy_openstates diff --git a/data/md/people/Courtney-Watson-ef1a4d48-39d0-4b6c-9ffc-a6d30b28476d.yml b/data/md/people/Courtney-Watson-ef1a4d48-39d0-4b6c-9ffc-a6d30b28476d.yml index 4b114346da..03a009d2ea 100644 --- a/data/md/people/Courtney-Watson-ef1a4d48-39d0-4b6c-9ffc-a6d30b28476d.yml +++ b/data/md/people/Courtney-Watson-ef1a4d48-39d0-4b6c-9ffc-a6d30b28476d.yml @@ -6,7 +6,6 @@ roles: - district: 9B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 209 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: courtney.watson@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3077 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=watson02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/watson02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=watson02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/watson02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/watson02 +image: http://mgaleg.maryland.gov/2020RS/images/watson02.jpg given_name: Courtney family_name: Watson diff --git a/data/md/people/Craig-J-Zucker-00b4a416-e9ca-44ad-b808-58c19d6fb54a.yml b/data/md/people/Craig-J-Zucker-00b4a416-e9ca-44ad-b808-58c19d6fb54a.yml index e693e83928..d0d2d5cfda 100644 --- a/data/md/people/Craig-J-Zucker-00b4a416-e9ca-44ad-b808-58c19d6fb54a.yml +++ b/data/md/people/Craig-J-Zucker-00b4a416-e9ca-44ad-b808-58c19d6fb54a.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3625 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=zucker01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/zucker01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=zucker01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/zucker01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/zucker01 +image: http://mgaleg.maryland.gov/2020RS/images/zucker01.jpg other_identifiers: - identifier: MDL000417 scheme: legacy_openstates diff --git a/data/md/people/Curt-Anderson-28685b0a-03b6-44b6-90f8-855bfcd46d72.yml b/data/md/people/Curt-Anderson-28685b0a-03b6-44b6-90f8-855bfcd46d72.yml index 7d9b62075f..b688293708 100644 --- a/data/md/people/Curt-Anderson-28685b0a-03b6-44b6-90f8-855bfcd46d72.yml +++ b/data/md/people/Curt-Anderson-28685b0a-03b6-44b6-90f8-855bfcd46d72.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3291 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderson&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderson sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderson&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/anderson.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderson +image: http://mgaleg.maryland.gov/2020RS/images/anderson.jpg other_identifiers: - identifier: MDL000238 scheme: legacy_openstates diff --git a/data/md/people/Dalya-Attar-d848993b-65e9-4ea3-ab2a-dfaf796142cc.yml b/data/md/people/Dalya-Attar-d848993b-65e9-4ea3-ab2a-dfaf796142cc.yml index 3f48ff48fb..bc1e2ebd5b 100644 --- a/data/md/people/Dalya-Attar-d848993b-65e9-4ea3-ab2a-dfaf796142cc.yml +++ b/data/md/people/Dalya-Attar-d848993b-65e9-4ea3-ab2a-dfaf796142cc.yml @@ -6,7 +6,6 @@ roles: - district: '41' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 317 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: dalya.attar@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3268 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=attar01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/attar01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=attar01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/attar01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/attar01 +image: http://mgaleg.maryland.gov/2020RS/images/attar01.jpg given_name: Dalya family_name: Attar diff --git a/data/md/people/Dana-Jones-73faf103-715f-425d-8642-0ecd0cf1d4c9.yml b/data/md/people/Dana-Jones-73faf103-715f-425d-8642-0ecd0cf1d4c9.yml new file mode 100644 index 0000000000..c826d4985b --- /dev/null +++ b/data/md/people/Dana-Jones-73faf103-715f-425d-8642-0ecd0cf1d4c9.yml @@ -0,0 +1,14 @@ +id: ocd-person/73faf103-715f-425d-8642-0ecd0cf1d4c9 +name: Dana Jones +party: +- name: Democratic +roles: +- district: 30A + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jones01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jones01 +image: http://mgaleg.maryland.gov/2020RS/images/jones01.jpg +contact_details: [] diff --git a/data/md/people/Dana-Stein-0418164e-2e86-4186-9f2d-327cb86b7eda.yml b/data/md/people/Dana-Stein-0418164e-2e86-4186-9f2d-327cb86b7eda.yml index 9cf4287af6..4b72911aea 100644 --- a/data/md/people/Dana-Stein-0418164e-2e86-4186-9f2d-327cb86b7eda.yml +++ b/data/md/people/Dana-Stein-0418164e-2e86-4186-9f2d-327cb86b7eda.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3527 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=stein&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/stein sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=stein&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/stein.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/stein +image: http://mgaleg.maryland.gov/2020RS/images/stein.jpg other_identifiers: - identifier: MDL000361 scheme: legacy_openstates diff --git a/data/md/people/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml b/data/md/people/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml new file mode 100644 index 0000000000..90c8af5000 --- /dev/null +++ b/data/md/people/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml @@ -0,0 +1,14 @@ +id: ocd-person/a7409a52-200a-4b76-b31b-8f6085e606dc +name: Daniel L. Cox +party: +- name: Republican +roles: +- district: '4' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cox01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cox01 +image: http://mgaleg.maryland.gov/2020RS/images/cox01.jpg +contact_details: [] diff --git a/data/md/people/Darryl-Barnes-55f598e0-524e-41e9-b728-10b98932d8ff.yml b/data/md/people/Darryl-Barnes-55f598e0-524e-41e9-b728-10b98932d8ff.yml index 721d93ce7b..f93f12fc53 100644 --- a/data/md/people/Darryl-Barnes-55f598e0-524e-41e9-b728-10b98932d8ff.yml +++ b/data/md/people/Darryl-Barnes-55f598e0-524e-41e9-b728-10b98932d8ff.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3557 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barnes02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barnes02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barnes02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/barnes02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barnes02 +image: http://mgaleg.maryland.gov/2020RS/images/barnes02.jpg other_identifiers: - identifier: MDL000664 scheme: legacy_openstates diff --git a/data/md/people/David-Fraser-Hidalgo-ccc2ad8a-fa2a-432c-8e95-d301636547fc.yml b/data/md/people/David-Fraser-Hidalgo-ccc2ad8a-fa2a-432c-8e95-d301636547fc.yml index 65265a336e..96684cc261 100644 --- a/data/md/people/David-Fraser-Hidalgo-ccc2ad8a-fa2a-432c-8e95-d301636547fc.yml +++ b/data/md/people/David-Fraser-Hidalgo-ccc2ad8a-fa2a-432c-8e95-d301636547fc.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3186 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fraser01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fraser01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fraser01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/fraser01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fraser01 +image: http://mgaleg.maryland.gov/2020RS/images/fraser01.jpg other_identifiers: - identifier: MDL000617 scheme: legacy_openstates diff --git a/data/md/people/David-Moon-0692b705-a577-4edb-9da0-8c828e2473ab.yml b/data/md/people/David-Moon-0692b705-a577-4edb-9da0-8c828e2473ab.yml index 44d8097926..7858f4ce3a 100644 --- a/data/md/people/David-Moon-0692b705-a577-4edb-9da0-8c828e2473ab.yml +++ b/data/md/people/David-Moon-0692b705-a577-4edb-9da0-8c828e2473ab.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3474 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=moon01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/moon01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=moon01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/moon01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/moon01 +image: http://mgaleg.maryland.gov/2020RS/images/moon01.jpg other_identifiers: - identifier: MDL000645 scheme: legacy_openstates diff --git a/data/md/people/Debra-Davis-64b23008-9889-4fd1-9353-42888d9bc4bb.yml b/data/md/people/Debra-Davis-64b23008-9889-4fd1-9353-42888d9bc4bb.yml index b00d0453c9..999c1ba2b8 100644 --- a/data/md/people/Debra-Davis-64b23008-9889-4fd1-9353-42888d9bc4bb.yml +++ b/data/md/people/Debra-Davis-64b23008-9889-4fd1-9353-42888d9bc4bb.yml @@ -6,7 +6,6 @@ roles: - district: '28' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 204 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: debra.davis@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3337 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=davis02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/davis02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=davis02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/davis02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/davis02 +image: http://mgaleg.maryland.gov/2020RS/images/davis02.jpg given_name: Debra family_name: Davis diff --git a/data/md/people/Delores-G-Kelley-ac5223df-8477-4cd7-90d7-7b150975fa89.yml b/data/md/people/Delores-G-Kelley-ac5223df-8477-4cd7-90d7-7b150975fa89.yml index eb622114bd..cf8ae04759 100644 --- a/data/md/people/Delores-G-Kelley-ac5223df-8477-4cd7-90d7-7b150975fa89.yml +++ b/data/md/people/Delores-G-Kelley-ac5223df-8477-4cd7-90d7-7b150975fa89.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3606 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kelley&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kelley sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kelley&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kelley.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kelley +image: http://mgaleg.maryland.gov/2020RS/images/kelley.jpg other_identifiers: - identifier: MDL000212 scheme: legacy_openstates diff --git a/data/md/people/Dereck-E-Davis-cd87b04a-34d3-4d81-aaf0-7e15a1df624a.yml b/data/md/people/Dereck-E-Davis-cd87b04a-34d3-4d81-aaf0-7e15a1df624a.yml index 925e2e7085..6828130f16 100644 --- a/data/md/people/Dereck-E-Davis-cd87b04a-34d3-4d81-aaf0-7e15a1df624a.yml +++ b/data/md/people/Dereck-E-Davis-cd87b04a-34d3-4d81-aaf0-7e15a1df624a.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3519 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=davis%20d&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/davis%20d sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=davis%20d&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/davis d.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/davis%20d +image: http://mgaleg.maryland.gov/2020RS/images/davis d.jpg other_identifiers: - identifier: MDL000267 scheme: legacy_openstates diff --git a/data/md/people/Diana-M-Fennell-3235313d-d279-4aaf-97fd-476d4c79c11a.yml b/data/md/people/Diana-M-Fennell-3235313d-d279-4aaf-97fd-476d4c79c11a.yml index 2792942a3a..4355646c64 100644 --- a/data/md/people/Diana-M-Fennell-3235313d-d279-4aaf-97fd-476d4c79c11a.yml +++ b/data/md/people/Diana-M-Fennell-3235313d-d279-4aaf-97fd-476d4c79c11a.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3478 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fennell01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fennell01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fennell01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/fennell01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fennell01 +image: http://mgaleg.maryland.gov/2020RS/images/fennell01.jpg other_identifiers: - identifier: MDL000651 scheme: legacy_openstates diff --git a/data/md/people/Douglas-J-J-Peters-26501511-8ecc-4d07-bc9a-bb463c3d248e.yml b/data/md/people/Douglas-J-J-Peters-26501511-8ecc-4d07-bc9a-bb463c3d248e.yml index 2870aeb948..5b335330e8 100644 --- a/data/md/people/Douglas-J-J-Peters-26501511-8ecc-4d07-bc9a-bb463c3d248e.yml +++ b/data/md/people/Douglas-J-J-Peters-26501511-8ecc-4d07-bc9a-bb463c3d248e.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3631 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=peters&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/peters sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=peters&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/peters.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/peters +image: http://mgaleg.maryland.gov/2020RS/images/peters.jpg other_identifiers: - identifier: MDL000225 scheme: legacy_openstates diff --git a/data/md/people/Edith-J-Patterson-c8851cc0-d707-49c5-939a-485fc7e14075.yml b/data/md/people/Edith-J-Patterson-c8851cc0-d707-49c5-939a-485fc7e14075.yml index b3a53274c4..2ac080341c 100644 --- a/data/md/people/Edith-J-Patterson-c8851cc0-d707-49c5-939a-485fc7e14075.yml +++ b/data/md/people/Edith-J-Patterson-c8851cc0-d707-49c5-939a-485fc7e14075.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3247 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=patterson02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/patterson02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=patterson02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/patterson02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/patterson02 +image: http://mgaleg.maryland.gov/2020RS/images/patterson02.jpg other_identifiers: - identifier: MDL000689 scheme: legacy_openstates diff --git a/data/md/people/Edward-R-Reilly-597acecb-dead-4b8c-8201-fd58f7e74c21.yml b/data/md/people/Edward-R-Reilly-597acecb-dead-4b8c-8201-fd58f7e74c21.yml index 3276beeb26..0dee3e628f 100644 --- a/data/md/people/Edward-R-Reilly-597acecb-dead-4b8c-8201-fd58f7e74c21.yml +++ b/data/md/people/Edward-R-Reilly-597acecb-dead-4b8c-8201-fd58f7e74c21.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3568 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reilly&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reilly sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reilly&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/reilly.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reilly +image: http://mgaleg.maryland.gov/2020RS/images/reilly.jpg other_identifiers: - identifier: MDL000230 scheme: legacy_openstates diff --git a/data/md/people/Emily-Shetty-ea24b6b8-ecff-4a51-badf-001c8889c5df.yml b/data/md/people/Emily-Shetty-ea24b6b8-ecff-4a51-badf-001c8889c5df.yml index a47065d146..5da55b948a 100644 --- a/data/md/people/Emily-Shetty-ea24b6b8-ecff-4a51-badf-001c8889c5df.yml +++ b/data/md/people/Emily-Shetty-ea24b6b8-ecff-4a51-badf-001c8889c5df.yml @@ -6,7 +6,6 @@ roles: - district: '18' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 224 House Office Building;6 Baden Street;Annapolis, MD 21401 email: emily.shetty@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3181 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=shetty01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/shetty01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=shetty01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/shetty01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/shetty01 +image: http://mgaleg.maryland.gov/2020RS/images/shetty01.jpg given_name: Emily family_name: Shetty diff --git a/data/md/people/Erek-L-Barron-86c7130e-3ec7-4572-b885-47298f9decad.yml b/data/md/people/Erek-L-Barron-86c7130e-3ec7-4572-b885-47298f9decad.yml index 0976761b9d..5ea2232494 100644 --- a/data/md/people/Erek-L-Barron-86c7130e-3ec7-4572-b885-47298f9decad.yml +++ b/data/md/people/Erek-L-Barron-86c7130e-3ec7-4572-b885-47298f9decad.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3692 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barron01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barron01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barron01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/barron01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barron01 +image: http://mgaleg.maryland.gov/2020RS/images/barron01.jpg other_identifiers: - identifier: MDL000668 scheme: legacy_openstates diff --git a/data/md/people/Eric-Ebersole-cbf6aefa-a6aa-4de5-9237-d1c34e5c4930.yml b/data/md/people/Eric-Ebersole-cbf6aefa-a6aa-4de5-9237-d1c34e5c4930.yml index 184356d4b9..7a7d7a9297 100644 --- a/data/md/people/Eric-Ebersole-cbf6aefa-a6aa-4de5-9237-d1c34e5c4930.yml +++ b/data/md/people/Eric-Ebersole-cbf6aefa-a6aa-4de5-9237-d1c34e5c4930.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3328 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ebersole01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ebersole01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ebersole01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ebersole01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ebersole01 +image: http://mgaleg.maryland.gov/2020RS/images/ebersole01.jpg other_identifiers: - identifier: MDL000691 scheme: legacy_openstates diff --git a/data/md/people/Eric-G-Luedtke-c29af24a-5fe8-4e41-9a33-2253e081c317.yml b/data/md/people/Eric-G-Luedtke-c29af24a-5fe8-4e41-9a33-2253e081c317.yml index d6bf29dc67..f03b187c4a 100644 --- a/data/md/people/Eric-G-Luedtke-c29af24a-5fe8-4e41-9a33-2253e081c317.yml +++ b/data/md/people/Eric-G-Luedtke-c29af24a-5fe8-4e41-9a33-2253e081c317.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3110 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=luedtke&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/luedtke sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=luedtke&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/luedtke.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/luedtke +image: http://mgaleg.maryland.gov/2020RS/images/luedtke.jpg other_identifiers: - identifier: MDL000401 scheme: legacy_openstates diff --git a/data/md/people/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml b/data/md/people/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml new file mode 100644 index 0000000000..d7c93ce6bf --- /dev/null +++ b/data/md/people/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml @@ -0,0 +1,28 @@ +id: ocd-person/a07dd6a0-012b-41a7-901d-754d1cd194bb +name: Frank M. Conaway, Jr. +party: +- name: Democratic +roles: +- district: '40' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +contact_details: +- address: 314 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: frank.conaway@house.state.md.us + fax: 410-841-3079 + note: Capitol Office + voice: 410-841-3189 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=conaway&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/conaway +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=conaway&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/conaway +image: http://mgaleg.maryland.gov/2020RS/images/conaway.jpg +other_identifiers: +- identifier: MDL000264 + scheme: legacy_openstates +- identifier: MDL000496 + scheme: legacy_openstates +given_name: Frank +family_name: Conaway diff --git a/data/md/people/Gabriel-Acevero-2f6dc3da-2750-4c4a-b4cf-034c40f3cb31.yml b/data/md/people/Gabriel-Acevero-2f6dc3da-2750-4c4a-b4cf-034c40f3cb31.yml index 9141be73df..61a93b546c 100644 --- a/data/md/people/Gabriel-Acevero-2f6dc3da-2750-4c4a-b4cf-034c40f3cb31.yml +++ b/data/md/people/Gabriel-Acevero-2f6dc3da-2750-4c4a-b4cf-034c40f3cb31.yml @@ -6,7 +6,6 @@ roles: - district: '39' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 225 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: gabriel.acervero@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3001 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=acevero01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/acevero01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=acevero01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/acevero01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/acevero01 +image: http://mgaleg.maryland.gov/2020RS/images/acevero01.jpg given_name: Gabriel family_name: Acevero diff --git a/data/md/people/George-C-Edwards-d3afbcc7-513f-4580-82ff-a10a0f8aad15.yml b/data/md/people/George-C-Edwards-d3afbcc7-513f-4580-82ff-a10a0f8aad15.yml index 5241c5372c..680abe9fad 100644 --- a/data/md/people/George-C-Edwards-d3afbcc7-513f-4580-82ff-a10a0f8aad15.yml +++ b/data/md/people/George-C-Edwards-d3afbcc7-513f-4580-82ff-a10a0f8aad15.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3565 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=edwards&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/edwards sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=edwards&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/edwards.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/edwards +image: http://mgaleg.maryland.gov/2020RS/images/edwards.jpg other_identifiers: - identifier: MDL000199 scheme: legacy_openstates diff --git a/data/md/people/Geraldine-Valentino-Smith-08605eb9-8023-4d82-a945-16c2c82e0afc.yml b/data/md/people/Geraldine-Valentino-Smith-08605eb9-8023-4d82-a945-16c2c82e0afc.yml index 6c4557f232..c9a982d618 100644 --- a/data/md/people/Geraldine-Valentino-Smith-08605eb9-8023-4d82-a945-16c2c82e0afc.yml +++ b/data/md/people/Geraldine-Valentino-Smith-08605eb9-8023-4d82-a945-16c2c82e0afc.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3101 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=valentino&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/valentino sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=valentino&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/valentino.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/valentino +image: http://mgaleg.maryland.gov/2020RS/images/valentino.jpg other_identifiers: - identifier: MDL000413 scheme: legacy_openstates diff --git a/data/md/people/Guy-Guzzone-04eec23c-719e-46b1-ae56-f34de9207e8c.yml b/data/md/people/Guy-Guzzone-04eec23c-719e-46b1-ae56-f34de9207e8c.yml index eb255edc7b..8d8f48acc5 100644 --- a/data/md/people/Guy-Guzzone-04eec23c-719e-46b1-ae56-f34de9207e8c.yml +++ b/data/md/people/Guy-Guzzone-04eec23c-719e-46b1-ae56-f34de9207e8c.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3572 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=guzzone&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/guzzone sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=guzzone&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/guzzone.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/guzzone +image: http://mgaleg.maryland.gov/2020RS/images/guzzone.jpg other_identifiers: - identifier: MDL000285 scheme: legacy_openstates diff --git a/data/md/people/Harry-Bhandari-14830b25-7188-44be-836f-2d3d0324dec1.yml b/data/md/people/Harry-Bhandari-14830b25-7188-44be-836f-2d3d0324dec1.yml index c7052eb371..ae9e154270 100644 --- a/data/md/people/Harry-Bhandari-14830b25-7188-44be-836f-2d3d0324dec1.yml +++ b/data/md/people/Harry-Bhandari-14830b25-7188-44be-836f-2d3d0324dec1.yml @@ -6,7 +6,6 @@ roles: - district: '8' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 303 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: harry.bhandari@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3526 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bhandari01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bhandari01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bhandari01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/bhandari01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bhandari01 +image: http://mgaleg.maryland.gov/2020RS/images/bhandari01.jpg given_name: Harry family_name: Bhandari diff --git a/data/md/people/Haven-Shoemaker-4ba2e69b-d9b2-49a5-8c35-e5bf7de7bac6.yml b/data/md/people/Haven-Shoemaker-4ba2e69b-d9b2-49a5-8c35-e5bf7de7bac6.yml index e369402512..aaf1ec9405 100644 --- a/data/md/people/Haven-Shoemaker-4ba2e69b-d9b2-49a5-8c35-e5bf7de7bac6.yml +++ b/data/md/people/Haven-Shoemaker-4ba2e69b-d9b2-49a5-8c35-e5bf7de7bac6.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3359 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=shoemaker01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/shoemaker01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=shoemaker01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/shoemaker01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/shoemaker01 +image: http://mgaleg.maryland.gov/2020RS/images/shoemaker01.jpg other_identifiers: - identifier: MDL000655 scheme: legacy_openstates diff --git a/data/md/people/Heather-Bagnall-396e14a6-1903-4a12-ad7b-aefae5263b0c.yml b/data/md/people/Heather-Bagnall-396e14a6-1903-4a12-ad7b-aefae5263b0c.yml index acb4a20930..5a3df426e2 100644 --- a/data/md/people/Heather-Bagnall-396e14a6-1903-4a12-ad7b-aefae5263b0c.yml +++ b/data/md/people/Heather-Bagnall-396e14a6-1903-4a12-ad7b-aefae5263b0c.yml @@ -6,7 +6,6 @@ roles: - district: '33' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 160 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: heather.bagnall@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3406 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bagnall01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bagnall01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bagnall01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/bagnall01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bagnall01 +image: http://mgaleg.maryland.gov/2020RS/images/bagnall01.jpg given_name: Heather family_name: Bagnall diff --git a/data/md/people/J-B-Jennings-72201809-94c8-4c48-a0be-18555a2d55fa.yml b/data/md/people/J-B-Jennings-72201809-94c8-4c48-a0be-18555a2d55fa.yml index 3cef54cf3d..4a6bcef864 100644 --- a/data/md/people/J-B-Jennings-72201809-94c8-4c48-a0be-18555a2d55fa.yml +++ b/data/md/people/J-B-Jennings-72201809-94c8-4c48-a0be-18555a2d55fa.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3706 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jennings&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jennings sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jennings&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/jennings.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jennings +image: http://mgaleg.maryland.gov/2020RS/images/jennings.jpg other_identifiers: - identifier: MDL000303 scheme: legacy_openstates diff --git a/data/md/people/J-Sandy-Bartlett-9fbc0383-4845-42ae-a2db-06b16c6f6728.yml b/data/md/people/J-Sandy-Bartlett-9fbc0383-4845-42ae-a2db-06b16c6f6728.yml index 6e5ab4c525..737dc79458 100644 --- a/data/md/people/J-Sandy-Bartlett-9fbc0383-4845-42ae-a2db-06b16c6f6728.yml +++ b/data/md/people/J-Sandy-Bartlett-9fbc0383-4845-42ae-a2db-06b16c6f6728.yml @@ -6,7 +6,6 @@ roles: - district: '32' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 163 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: sandy.bartlett@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3370 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bartlett02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bartlett02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bartlett02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/bartlett02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bartlett02 +image: http://mgaleg.maryland.gov/2020RS/images/bartlett02.jpg given_name: Sandy family_name: Bartlett diff --git a/data/md/people/Jack-Bailey-d6ad9dff-6f4f-48c9-8806-d651a0d86f58.yml b/data/md/people/Jack-Bailey-d6ad9dff-6f4f-48c9-8806-d651a0d86f58.yml index ae21adcaca..973ec780f2 100644 --- a/data/md/people/Jack-Bailey-d6ad9dff-6f4f-48c9-8806-d651a0d86f58.yml +++ b/data/md/people/Jack-Bailey-d6ad9dff-6f4f-48c9-8806-d651a0d86f58.yml @@ -6,7 +6,6 @@ roles: - district: '29' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 402 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: jack.bailey@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3673 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bailey01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bailey01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bailey01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/bailey01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bailey01 +image: http://mgaleg.maryland.gov/2020RS/images/bailey01.jpg given_name: Jack family_name: Bailey diff --git a/data/md/people/Jared-Solomon-4edadbc3-1635-4ce9-9b8c-1220f07e7b23.yml b/data/md/people/Jared-Solomon-4edadbc3-1635-4ce9-9b8c-1220f07e7b23.yml index 8ddf4da2e0..4327544605 100644 --- a/data/md/people/Jared-Solomon-4edadbc3-1635-4ce9-9b8c-1220f07e7b23.yml +++ b/data/md/people/Jared-Solomon-4edadbc3-1635-4ce9-9b8c-1220f07e7b23.yml @@ -6,7 +6,6 @@ roles: - district: '18' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 222 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: jared.solomon@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3130 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=solomon01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/solomon01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=solomon01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/solomon01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/solomon01 +image: http://mgaleg.maryland.gov/2020RS/images/solomon01.jpg given_name: Jared family_name: Solomon diff --git a/data/md/people/Jason-C-Buckel-0218a7f4-9904-426e-b676-be22eb714185.yml b/data/md/people/Jason-C-Buckel-0218a7f4-9904-426e-b676-be22eb714185.yml index a656217287..6c2d8ea437 100644 --- a/data/md/people/Jason-C-Buckel-0218a7f4-9904-426e-b676-be22eb714185.yml +++ b/data/md/people/Jason-C-Buckel-0218a7f4-9904-426e-b676-be22eb714185.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3404 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=buckel01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/buckel01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=buckel01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/buckel01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/buckel01 +image: http://mgaleg.maryland.gov/2020RS/images/buckel01.jpg other_identifiers: - identifier: MDL000637 scheme: legacy_openstates diff --git a/data/md/people/Jason-C-Gallion-7c2a7a4b-f847-4efa-baea-2e5633acdcd5.yml b/data/md/people/Jason-C-Gallion-7c2a7a4b-f847-4efa-baea-2e5633acdcd5.yml index 117a5a363c..3b85c464b7 100644 --- a/data/md/people/Jason-C-Gallion-7c2a7a4b-f847-4efa-baea-2e5633acdcd5.yml +++ b/data/md/people/Jason-C-Gallion-7c2a7a4b-f847-4efa-baea-2e5633acdcd5.yml @@ -6,7 +6,6 @@ roles: - district: '35' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 414 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: jason.gallion@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3603 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=gallion01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/gallion01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=gallion01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/gallion01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/gallion01 +image: http://mgaleg.maryland.gov/2020RS/images/gallion01.jpg given_name: Jason family_name: Gallion diff --git a/data/md/people/Jay-A-Jacobs-4f0a99bb-9045-471a-88d2-1fea0ad8ccab.yml b/data/md/people/Jay-A-Jacobs-4f0a99bb-9045-471a-88d2-1fea0ad8ccab.yml index d764457ba8..33ef789fff 100644 --- a/data/md/people/Jay-A-Jacobs-4f0a99bb-9045-471a-88d2-1fea0ad8ccab.yml +++ b/data/md/people/Jay-A-Jacobs-4f0a99bb-9045-471a-88d2-1fea0ad8ccab.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3449 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jacobs%20j&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jacobs%20j sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jacobs%20j&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/jacobs j.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jacobs%20j +image: http://mgaleg.maryland.gov/2020RS/images/jacobs j.jpg other_identifiers: - identifier: MDL000399 scheme: legacy_openstates diff --git a/data/md/people/Jay-Jalisi-da8ccc70-b951-42d3-96f4-3b58d32d92f1.yml b/data/md/people/Jay-Jalisi-da8ccc70-b951-42d3-96f4-3b58d32d92f1.yml index 2b8e548b08..f51321acee 100644 --- a/data/md/people/Jay-Jalisi-da8ccc70-b951-42d3-96f4-3b58d32d92f1.yml +++ b/data/md/people/Jay-Jalisi-da8ccc70-b951-42d3-96f4-3b58d32d92f1.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3358 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jalisi01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jalisi01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jalisi01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/jalisi01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jalisi01 +image: http://mgaleg.maryland.gov/2020RS/images/jalisi01.jpg other_identifiers: - identifier: MDL000638 scheme: legacy_openstates diff --git a/data/md/people/Jay-Walker-6f52bd64-0893-4c8a-ba1b-e2ecef9eb754.yml b/data/md/people/Jay-Walker-6f52bd64-0893-4c8a-ba1b-e2ecef9eb754.yml index 7d3cf03336..8a651552af 100644 --- a/data/md/people/Jay-Walker-6f52bd64-0893-4c8a-ba1b-e2ecef9eb754.yml +++ b/data/md/people/Jay-Walker-6f52bd64-0893-4c8a-ba1b-e2ecef9eb754.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3581 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=walker&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/walker sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=walker&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/walker.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/walker +image: http://mgaleg.maryland.gov/2020RS/images/walker.jpg other_identifiers: - identifier: MDL000374 scheme: legacy_openstates diff --git a/data/md/people/Jazz-Lewis-eb368768-5e97-43c1-9b0e-72062436519a.yml b/data/md/people/Jazz-Lewis-eb368768-5e97-43c1-9b0e-72062436519a.yml index 5e11029de3..837f3b7e80 100644 --- a/data/md/people/Jazz-Lewis-eb368768-5e97-43c1-9b0e-72062436519a.yml +++ b/data/md/people/Jazz-Lewis-eb368768-5e97-43c1-9b0e-72062436519a.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3691 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lewis02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lewis02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lewis02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lewis02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lewis02 +image: http://mgaleg.maryland.gov/2020RS/images/lewis02.jpg other_identifiers: - identifier: MDL000735 scheme: legacy_openstates diff --git a/data/md/people/Jeff-Waldstreicher-43ee08fa-dce5-4526-8242-17e3e70baad7.yml b/data/md/people/Jeff-Waldstreicher-43ee08fa-dce5-4526-8242-17e3e70baad7.yml index 41b1e815cb..c5a400c3ab 100644 --- a/data/md/people/Jeff-Waldstreicher-43ee08fa-dce5-4526-8242-17e3e70baad7.yml +++ b/data/md/people/Jeff-Waldstreicher-43ee08fa-dce5-4526-8242-17e3e70baad7.yml @@ -10,7 +10,6 @@ roles: - district: '18' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 216 Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: jeff.waldstreicher@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3137 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=waldstreicher1&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/waldstreicher1 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=waldstreicher1&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/waldstreicher1.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/waldstreicher1 +image: http://mgaleg.maryland.gov/2020RS/images/waldstreicher1.jpg other_identifiers: - identifier: MDL000373 scheme: legacy_openstates diff --git a/data/md/people/Jefferson-L-Ghrist-297d462e-6cee-4faf-ab3e-4ded2ea6f916.yml b/data/md/people/Jefferson-L-Ghrist-297d462e-6cee-4faf-ab3e-4ded2ea6f916.yml index 3c6c0edd10..7bbf3e6c86 100644 --- a/data/md/people/Jefferson-L-Ghrist-297d462e-6cee-4faf-ab3e-4ded2ea6f916.yml +++ b/data/md/people/Jefferson-L-Ghrist-297d462e-6cee-4faf-ab3e-4ded2ea6f916.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3555 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ghrist01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ghrist01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ghrist01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ghrist01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ghrist01 +image: http://mgaleg.maryland.gov/2020RS/images/ghrist01.jpg other_identifiers: - identifier: MDL000686 scheme: legacy_openstates diff --git a/data/md/people/Jen-Terrasa-51573cf9-a7d7-40d5-bd9a-90e3042c4cab.yml b/data/md/people/Jen-Terrasa-51573cf9-a7d7-40d5-bd9a-90e3042c4cab.yml index 9bfbf883d3..0b36ff2fcb 100644 --- a/data/md/people/Jen-Terrasa-51573cf9-a7d7-40d5-bd9a-90e3042c4cab.yml +++ b/data/md/people/Jen-Terrasa-51573cf9-a7d7-40d5-bd9a-90e3042c4cab.yml @@ -6,7 +6,6 @@ roles: - district: '13' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 215 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: jen.terrasa@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3246 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=terrasa01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/terrasa01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=terrasa01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/terrasa01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/terrasa01 +image: http://mgaleg.maryland.gov/2020RS/images/terrasa01.jpg given_name: Jen family_name: Terrasa diff --git a/data/md/people/Jerry-Clark-391fd87a-c569-4db7-b386-b20ccc714dd8.yml b/data/md/people/Jerry-Clark-391fd87a-c569-4db7-b386-b20ccc714dd8.yml index 1f70a55d00..37d99037fa 100644 --- a/data/md/people/Jerry-Clark-391fd87a-c569-4db7-b386-b20ccc714dd8.yml +++ b/data/md/people/Jerry-Clark-391fd87a-c569-4db7-b386-b20ccc714dd8.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3314 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=clark01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/clark01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=clark01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/clark01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/clark01 +image: http://mgaleg.maryland.gov/2020RS/images/clark01.jpg other_identifiers: - identifier: MDL000728 scheme: legacy_openstates diff --git a/data/md/people/Jesse-T-Pippy-208e3148-8653-4162-8c92-6ba02e15e59b.yml b/data/md/people/Jesse-T-Pippy-208e3148-8653-4162-8c92-6ba02e15e59b.yml index 95d4803c6e..99d40df11d 100644 --- a/data/md/people/Jesse-T-Pippy-208e3148-8653-4162-8c92-6ba02e15e59b.yml +++ b/data/md/people/Jesse-T-Pippy-208e3148-8653-4162-8c92-6ba02e15e59b.yml @@ -6,7 +6,6 @@ roles: - district: '4' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 326 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: jesse.pippy@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3118 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pippy01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pippy01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pippy01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/pippy01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pippy01 +image: http://mgaleg.maryland.gov/2020RS/images/pippy01.jpg given_name: Jesse family_name: Pippy diff --git a/data/md/people/Jessica-Feldmark-5e096a5d-1598-49c1-ba34-758759953f2f.yml b/data/md/people/Jessica-Feldmark-5e096a5d-1598-49c1-ba34-758759953f2f.yml index 7e3103a433..dc63140e6a 100644 --- a/data/md/people/Jessica-Feldmark-5e096a5d-1598-49c1-ba34-758759953f2f.yml +++ b/data/md/people/Jessica-Feldmark-5e096a5d-1598-49c1-ba34-758759953f2f.yml @@ -6,7 +6,6 @@ roles: - district: '12' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 216 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: jessica.feldmark@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3205 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=feldmark01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/feldmark01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=feldmark01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/feldmark01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/feldmark01 +image: http://mgaleg.maryland.gov/2020RS/images/feldmark01.jpg given_name: Jessica family_name: Feldmark diff --git a/data/md/people/Jheanelle-K-Wilkins-03da7272-eadc-4ad3-ba4b-f06f60acbed0.yml b/data/md/people/Jheanelle-K-Wilkins-03da7272-eadc-4ad3-ba4b-f06f60acbed0.yml index 1687fcae2d..8fe29531ba 100644 --- a/data/md/people/Jheanelle-K-Wilkins-03da7272-eadc-4ad3-ba4b-f06f60acbed0.yml +++ b/data/md/people/Jheanelle-K-Wilkins-03da7272-eadc-4ad3-ba4b-f06f60acbed0.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3493 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wilkins01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wilkins01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wilkins01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/wilkins01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wilkins01 +image: http://mgaleg.maryland.gov/2020RS/images/wilkins01.jpg other_identifiers: - identifier: MDL000732 scheme: legacy_openstates diff --git a/data/md/people/Jill-P-Carter-d2a4d2c5-192b-4545-bd00-58024b65e7b4.yml b/data/md/people/Jill-P-Carter-d2a4d2c5-192b-4545-bd00-58024b65e7b4.yml index 24de200cd4..5bd80abc31 100644 --- a/data/md/people/Jill-P-Carter-d2a4d2c5-192b-4545-bd00-58024b65e7b4.yml +++ b/data/md/people/Jill-P-Carter-d2a4d2c5-192b-4545-bd00-58024b65e7b4.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3697 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carter01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carter01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carter01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/carter01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carter01 +image: http://mgaleg.maryland.gov/2020RS/images/carter01.jpg other_identifiers: - identifier: MDL000742 scheme: legacy_openstates diff --git a/data/md/people/Jim-Gilchrist-f46d4649-7b8d-4287-a5fd-85154fe530d2.yml b/data/md/people/Jim-Gilchrist-f46d4649-7b8d-4287-a5fd-85154fe530d2.yml index 3225b1e294..5cde69a802 100644 --- a/data/md/people/Jim-Gilchrist-f46d4649-7b8d-4287-a5fd-85154fe530d2.yml +++ b/data/md/people/Jim-Gilchrist-f46d4649-7b8d-4287-a5fd-85154fe530d2.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3744 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=gilchrist&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/gilchrist sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=gilchrist&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/gilchrist.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/gilchrist +image: http://mgaleg.maryland.gov/2020RS/images/gilchrist.jpg other_identifiers: - identifier: MDL000281 scheme: legacy_openstates diff --git a/data/md/people/Jim-Rosapepe-0867a6dd-db6b-4c2f-8748-f9b4782d9a19.yml b/data/md/people/Jim-Rosapepe-0867a6dd-db6b-4c2f-8748-f9b4782d9a19.yml index a17c547845..aba59eaac1 100644 --- a/data/md/people/Jim-Rosapepe-0867a6dd-db6b-4c2f-8748-f9b4782d9a19.yml +++ b/data/md/people/Jim-Rosapepe-0867a6dd-db6b-4c2f-8748-f9b4782d9a19.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3141 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rosapepe&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rosapepe sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rosapepe&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/rosapepe.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rosapepe +image: http://mgaleg.maryland.gov/2020RS/images/rosapepe.jpg other_identifiers: - identifier: MDL000232 scheme: legacy_openstates diff --git a/data/md/people/Joanne-C-Benson-a5a952f8-f001-4619-9056-103a1f4e4d8e.yml b/data/md/people/Joanne-C-Benson-a5a952f8-f001-4619-9056-103a1f4e4d8e.yml index e55f26c1bc..0669953164 100644 --- a/data/md/people/Joanne-C-Benson-a5a952f8-f001-4619-9056-103a1f4e4d8e.yml +++ b/data/md/people/Joanne-C-Benson-a5a952f8-f001-4619-9056-103a1f4e4d8e.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3148 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=benson&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/benson sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=benson&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/benson.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/benson +image: http://mgaleg.maryland.gov/2020RS/images/benson.jpg other_identifiers: - identifier: MDL000248 scheme: legacy_openstates diff --git a/data/md/people/Johnny-Mautz-84e203b4-277c-4e10-aeb3-a80158bdf525.yml b/data/md/people/Johnny-Mautz-84e203b4-277c-4e10-aeb3-a80158bdf525.yml index ec1051ec32..527b15c926 100644 --- a/data/md/people/Johnny-Mautz-84e203b4-277c-4e10-aeb3-a80158bdf525.yml +++ b/data/md/people/Johnny-Mautz-84e203b4-277c-4e10-aeb3-a80158bdf525.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3429 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mautz01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mautz01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mautz01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mautz01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mautz01 +image: http://mgaleg.maryland.gov/2020RS/images/mautz01.jpg other_identifiers: - identifier: MDL000660 scheme: legacy_openstates diff --git a/data/md/people/Johnny-Ray-Salling-6a5dec66-3631-424f-aceb-6aa9f107cea1.yml b/data/md/people/Johnny-Ray-Salling-6a5dec66-3631-424f-aceb-6aa9f107cea1.yml index 58d70acfdf..73763b5841 100644 --- a/data/md/people/Johnny-Ray-Salling-6a5dec66-3631-424f-aceb-6aa9f107cea1.yml +++ b/data/md/people/Johnny-Ray-Salling-6a5dec66-3631-424f-aceb-6aa9f107cea1.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3587 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=salling01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/salling01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=salling01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/salling01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/salling01 +image: http://mgaleg.maryland.gov/2020RS/images/salling01.jpg other_identifiers: - identifier: MDL000680 scheme: legacy_openstates diff --git a/data/md/people/Jon-S-Cardin-13771198-ddf4-4dfd-80f1-b4069ec55914.yml b/data/md/people/Jon-S-Cardin-13771198-ddf4-4dfd-80f1-b4069ec55914.yml index 5ab0684e75..b66668d9c2 100644 --- a/data/md/people/Jon-S-Cardin-13771198-ddf4-4dfd-80f1-b4069ec55914.yml +++ b/data/md/people/Jon-S-Cardin-13771198-ddf4-4dfd-80f1-b4069ec55914.yml @@ -6,7 +6,6 @@ roles: - district: '11' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 217 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: jon.cardin@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3054 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cardin01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cardin01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cardin01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/cardin01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cardin01 +image: http://mgaleg.maryland.gov/2020RS/images/cardin01.jpg given_name: Jon family_name: Cardin diff --git a/data/md/people/Joseline-A-Pena-Melnyk-366c0122-84a8-460e-bc98-93d4ca5f0176.yml b/data/md/people/Joseline-A-Pena-Melnyk-366c0122-84a8-460e-bc98-93d4ca5f0176.yml index 99853e53d5..a0fea371ad 100644 --- a/data/md/people/Joseline-A-Pena-Melnyk-366c0122-84a8-460e-bc98-93d4ca5f0176.yml +++ b/data/md/people/Joseline-A-Pena-Melnyk-366c0122-84a8-460e-bc98-93d4ca5f0176.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3502 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pena&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pena sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pena&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/pena.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pena +image: http://mgaleg.maryland.gov/2020RS/images/pena.jpg other_identifiers: - identifier: MDL000341 scheme: legacy_openstates diff --git a/data/md/people/Joseph-C-Boteler-III-849b2ad5-f22a-4d8b-aaf5-d079b01e5916.yml b/data/md/people/Joseph-C-Boteler-III-849b2ad5-f22a-4d8b-aaf5-d079b01e5916.yml index de2cbf78ea..fd9268a9b5 100644 --- a/data/md/people/Joseph-C-Boteler-III-849b2ad5-f22a-4d8b-aaf5-d079b01e5916.yml +++ b/data/md/people/Joseph-C-Boteler-III-849b2ad5-f22a-4d8b-aaf5-d079b01e5916.yml @@ -6,7 +6,6 @@ roles: - district: '8' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 319 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: joseph.boteler@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3365 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=boteler01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/boteler01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=boteler01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/boteler01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/boteler01 +image: http://mgaleg.maryland.gov/2020RS/images/boteler01.jpg given_name: Joseph family_name: Boteler diff --git a/data/md/people/Julian-Ivey-e57fb9b8-7870-4bd2-8f46-df05edf038ac.yml b/data/md/people/Julian-Ivey-e57fb9b8-7870-4bd2-8f46-df05edf038ac.yml index 5998098fc7..57d58c351b 100644 --- a/data/md/people/Julian-Ivey-e57fb9b8-7870-4bd2-8f46-df05edf038ac.yml +++ b/data/md/people/Julian-Ivey-e57fb9b8-7870-4bd2-8f46-df05edf038ac.yml @@ -6,7 +6,6 @@ roles: - district: 47A jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 217 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: julien.ivey@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3326 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ivey01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ivey01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ivey01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ivey01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ivey01 +image: http://mgaleg.maryland.gov/2020RS/images/ivey01.jpg given_name: Julian family_name: Ivey diff --git a/data/md/people/Julie-Palakovich-Carr-0d479110-74e8-45dd-bc01-330a169918b1.yml b/data/md/people/Julie-Palakovich-Carr-0d479110-74e8-45dd-bc01-330a169918b1.yml index a343179001..950d6ca0fc 100644 --- a/data/md/people/Julie-Palakovich-Carr-0d479110-74e8-45dd-bc01-330a169918b1.yml +++ b/data/md/people/Julie-Palakovich-Carr-0d479110-74e8-45dd-bc01-330a169918b1.yml @@ -6,15 +6,16 @@ roles: - district: '17' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 221 House Office Building;6 Bladen Street;Annapolis, MD 21401 note: Capitol Office voice: 410-841-3037 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=palakovich01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/palakovich01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=palakovich01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/palakovich01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/palakovich01 +image: http://mgaleg.maryland.gov/2020RS/images/palakovich01.jpg given_name: Julie family_name: Palakovich Carr diff --git a/data/md/people/Justin-Ready-eea44ceb-5bec-458e-b22e-16351c5f98f9.yml b/data/md/people/Justin-Ready-eea44ceb-5bec-458e-b22e-16351c5f98f9.yml index 5b4dd20c55..e1723f7065 100644 --- a/data/md/people/Justin-Ready-eea44ceb-5bec-458e-b22e-16351c5f98f9.yml +++ b/data/md/people/Justin-Ready-eea44ceb-5bec-458e-b22e-16351c5f98f9.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3683 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ready01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ready01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=ready01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/ready01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ready01 +image: http://mgaleg.maryland.gov/2020RS/images/ready01.jpg other_identifiers: - identifier: MDL000408 scheme: legacy_openstates diff --git a/data/md/people/Karen-Lewis-Young-eebac21f-2ba7-4368-a8e9-fcc20672ad1e.yml b/data/md/people/Karen-Lewis-Young-eebac21f-2ba7-4368-a8e9-fcc20672ad1e.yml index a05ac59608..90e70d4372 100644 --- a/data/md/people/Karen-Lewis-Young-eebac21f-2ba7-4368-a8e9-fcc20672ad1e.yml +++ b/data/md/people/Karen-Lewis-Young-eebac21f-2ba7-4368-a8e9-fcc20672ad1e.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3436 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/young02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young02 +image: http://mgaleg.maryland.gov/2020RS/images/young02.jpg other_identifiers: - identifier: MDL000675 scheme: legacy_openstates diff --git a/data/md/people/Katherine-Klausmeier-d9846189-aaed-4ca9-a59f-4a3146d72719.yml b/data/md/people/Katherine-Klausmeier-d9846189-aaed-4ca9-a59f-4a3146d72719.yml index 1fb219fd7b..19f2004345 100644 --- a/data/md/people/Katherine-Klausmeier-d9846189-aaed-4ca9-a59f-4a3146d72719.yml +++ b/data/md/people/Katherine-Klausmeier-d9846189-aaed-4ca9-a59f-4a3146d72719.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3620 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=klausmeier&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/klausmeier sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=klausmeier&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/klausmeier.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/klausmeier +image: http://mgaleg.maryland.gov/2020RS/images/klausmeier.jpg other_identifiers: - identifier: MDL000215 scheme: legacy_openstates diff --git a/data/md/people/Kathleen-M-Dumais-1bfdc88d-62d4-4e89-9f60-ba4709a221be.yml b/data/md/people/Kathleen-M-Dumais-1bfdc88d-62d4-4e89-9f60-ba4709a221be.yml index f199b8e3ae..3cb51f5dfb 100644 --- a/data/md/people/Kathleen-M-Dumais-1bfdc88d-62d4-4e89-9f60-ba4709a221be.yml +++ b/data/md/people/Kathleen-M-Dumais-1bfdc88d-62d4-4e89-9f60-ba4709a221be.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3052 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=dumais&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/dumais sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=dumais&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/dumais.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/dumais +image: http://mgaleg.maryland.gov/2020RS/images/dumais.jpg other_identifiers: - identifier: MDL000270 scheme: legacy_openstates diff --git a/data/md/people/Kathy-Szeliga-943d1601-904b-40dc-8b98-84bbb02851ab.yml b/data/md/people/Kathy-Szeliga-943d1601-904b-40dc-8b98-84bbb02851ab.yml index 98f855a0e6..f05a888097 100644 --- a/data/md/people/Kathy-Szeliga-943d1601-904b-40dc-8b98-84bbb02851ab.yml +++ b/data/md/people/Kathy-Szeliga-943d1601-904b-40dc-8b98-84bbb02851ab.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3698 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=szeliga&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/szeliga sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=szeliga&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/szeliga.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/szeliga +image: http://mgaleg.maryland.gov/2020RS/images/szeliga.jpg other_identifiers: - identifier: MDL000412 scheme: legacy_openstates diff --git a/data/md/people/Katie-Fry-Hester-232b5c5d-87e8-4ce9-921c-8c05af96afd4.yml b/data/md/people/Katie-Fry-Hester-232b5c5d-87e8-4ce9-921c-8c05af96afd4.yml index a21e286a37..162e844a7e 100644 --- a/data/md/people/Katie-Fry-Hester-232b5c5d-87e8-4ce9-921c-8c05af96afd4.yml +++ b/data/md/people/Katie-Fry-Hester-232b5c5d-87e8-4ce9-921c-8c05af96afd4.yml @@ -6,7 +6,6 @@ roles: - district: '9' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 304 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: katie.hester@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3671 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hester01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hester01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hester01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hester01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hester01 +image: http://mgaleg.maryland.gov/2020RS/images/hester01.jpg given_name: Katie family_name: Fry Hester diff --git a/data/md/people/Keith-E-Haynes-b20802dc-16a1-41ac-bb46-a958ce7d6d58.yml b/data/md/people/Keith-E-Haynes-b20802dc-16a1-41ac-bb46-a958ce7d6d58.yml index 2503f9a879..9c7515dc31 100644 --- a/data/md/people/Keith-E-Haynes-b20802dc-16a1-41ac-bb46-a958ce7d6d58.yml +++ b/data/md/people/Keith-E-Haynes-b20802dc-16a1-41ac-bb46-a958ce7d6d58.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3801 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=haynes&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/haynes sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=haynes&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/haynes.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/haynes +image: http://mgaleg.maryland.gov/2020RS/images/haynes.jpg other_identifiers: - identifier: MDL000289 scheme: legacy_openstates diff --git a/data/md/people/Ken-Kerr-38379d8c-a63d-4e2b-88ee-ee6dcd646c95.yml b/data/md/people/Ken-Kerr-38379d8c-a63d-4e2b-88ee-ee6dcd646c95.yml index b1899f19a0..ef05d80634 100644 --- a/data/md/people/Ken-Kerr-38379d8c-a63d-4e2b-88ee-ee6dcd646c95.yml +++ b/data/md/people/Ken-Kerr-38379d8c-a63d-4e2b-88ee-ee6dcd646c95.yml @@ -6,7 +6,6 @@ roles: - district: 3B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 209 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: ken.kerr@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3240 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kerr01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kerr01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kerr01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kerr01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kerr01 +image: http://mgaleg.maryland.gov/2020RS/images/kerr01.jpg given_name: Ken family_name: Kerr diff --git a/data/md/people/Kevin-B-Hornberger-fe412f7a-cff0-4153-bfea-a0578f2e1aaa.yml b/data/md/people/Kevin-B-Hornberger-fe412f7a-cff0-4153-bfea-a0578f2e1aaa.yml index cb1fab86f5..83df58eaa0 100644 --- a/data/md/people/Kevin-B-Hornberger-fe412f7a-cff0-4153-bfea-a0578f2e1aaa.yml +++ b/data/md/people/Kevin-B-Hornberger-fe412f7a-cff0-4153-bfea-a0578f2e1aaa.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3284 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hornberger01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hornberger01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hornberger01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hornberger01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hornberger01 +image: http://mgaleg.maryland.gov/2020RS/images/hornberger01.jpg other_identifiers: - identifier: MDL000692 scheme: legacy_openstates diff --git a/data/md/people/Kirill-Reznik-964890bc-9b86-4492-891f-812f58d4355d.yml b/data/md/people/Kirill-Reznik-964890bc-9b86-4492-891f-812f58d4355d.yml index 9bede34b28..418155adaa 100644 --- a/data/md/people/Kirill-Reznik-964890bc-9b86-4492-891f-812f58d4355d.yml +++ b/data/md/people/Kirill-Reznik-964890bc-9b86-4492-891f-812f58d4355d.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3039 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reznik&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reznik sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reznik&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/reznik.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reznik +image: http://mgaleg.maryland.gov/2020RS/images/reznik.jpg other_identifiers: - identifier: MDL000345 scheme: legacy_openstates diff --git a/data/md/people/Kriselda-Valderrama-dcd83c80-dab5-4c22-be2f-0b4081af2f77.yml b/data/md/people/Kriselda-Valderrama-dcd83c80-dab5-4c22-be2f-0b4081af2f77.yml index 8f99699db0..055ec3d987 100644 --- a/data/md/people/Kriselda-Valderrama-dcd83c80-dab5-4c22-be2f-0b4081af2f77.yml +++ b/data/md/people/Kriselda-Valderrama-dcd83c80-dab5-4c22-be2f-0b4081af2f77.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3210 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=valderrama&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/valderrama sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=valderrama&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/valderrama.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/valderrama +image: http://mgaleg.maryland.gov/2020RS/images/valderrama.jpg other_identifiers: - identifier: MDL000370 scheme: legacy_openstates diff --git a/data/md/people/Kumar-P-Barve-b7119231-82fe-4bf6-8045-280f784308d9.yml b/data/md/people/Kumar-P-Barve-b7119231-82fe-4bf6-8045-280f784308d9.yml index 9c41adafce..28801a6c39 100644 --- a/data/md/people/Kumar-P-Barve-b7119231-82fe-4bf6-8045-280f784308d9.yml +++ b/data/md/people/Kumar-P-Barve-b7119231-82fe-4bf6-8045-280f784308d9.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3990 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barve&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barve sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=barve&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/barve.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/barve +image: http://mgaleg.maryland.gov/2020RS/images/barve.jpg other_identifiers: - identifier: MDL000244 scheme: legacy_openstates diff --git a/data/md/people/Lauren-Arikan-6d88ea30-7b4e-4dcb-8cc7-ed4bb6edc317.yml b/data/md/people/Lauren-Arikan-6d88ea30-7b4e-4dcb-8cc7-ed4bb6edc317.yml index 58da52e7ee..a3e1087e8c 100644 --- a/data/md/people/Lauren-Arikan-6d88ea30-7b4e-4dcb-8cc7-ed4bb6edc317.yml +++ b/data/md/people/Lauren-Arikan-6d88ea30-7b4e-4dcb-8cc7-ed4bb6edc317.yml @@ -6,7 +6,6 @@ roles: - district: '7' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 324 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: lauren.arikan@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3334 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=arikan01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/arikan01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=arikan01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/arikan01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/arikan01 +image: http://mgaleg.maryland.gov/2020RS/images/arikan01.jpg given_name: Lauren family_name: Arikan diff --git a/data/md/people/Lesley-J-Lopez-3972ae32-865b-4f83-961f-d8a7ca703ad5.yml b/data/md/people/Lesley-J-Lopez-3972ae32-865b-4f83-961f-d8a7ca703ad5.yml index e819ab2b0a..5439b655f5 100644 --- a/data/md/people/Lesley-J-Lopez-3972ae32-865b-4f83-961f-d8a7ca703ad5.yml +++ b/data/md/people/Lesley-J-Lopez-3972ae32-865b-4f83-961f-d8a7ca703ad5.yml @@ -6,7 +6,6 @@ roles: - district: '39' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 221 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: lesley.lopez@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3021 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lopez01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lopez01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lopez01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lopez01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lopez01 +image: http://mgaleg.maryland.gov/2020RS/images/lopez01.jpg given_name: Lesley family_name: Lopez diff --git a/data/md/people/Lily-Qi-832c64da-9793-49a2-8231-c62d0cd7078a.yml b/data/md/people/Lily-Qi-832c64da-9793-49a2-8231-c62d0cd7078a.yml index 31a2c5e0d1..0a2739d654 100644 --- a/data/md/people/Lily-Qi-832c64da-9793-49a2-8231-c62d0cd7078a.yml +++ b/data/md/people/Lily-Qi-832c64da-9793-49a2-8231-c62d0cd7078a.yml @@ -6,7 +6,6 @@ roles: - district: '15' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 223 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: lily.qi@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3090 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=qi01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/qi01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=qi01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/qi01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/qi01 +image: http://mgaleg.maryland.gov/2020RS/images/qi01.jpg given_name: Lily family_name: Qi diff --git a/data/md/people/Lisa-Belcastro-7e53bc3f-236c-4722-a22c-d989c0bd84c8.yml b/data/md/people/Lisa-Belcastro-7e53bc3f-236c-4722-a22c-d989c0bd84c8.yml new file mode 100644 index 0000000000..577c4a18da --- /dev/null +++ b/data/md/people/Lisa-Belcastro-7e53bc3f-236c-4722-a22c-d989c0bd84c8.yml @@ -0,0 +1,14 @@ +id: ocd-person/7e53bc3f-236c-4722-a22c-d989c0bd84c8 +name: Lisa Belcastro +party: +- name: Democratic +roles: +- district: '11' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/belcastro01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/belcastro01 +image: http://mgaleg.maryland.gov/2020RS/images/belcastro01.jpg +contact_details: [] diff --git a/data/md/people/Lorig-Charkoudian-d4354cae-a994-4b2d-863f-238322fc6135.yml b/data/md/people/Lorig-Charkoudian-d4354cae-a994-4b2d-863f-238322fc6135.yml index 8d0dcb91ec..5ffea0e1e8 100644 --- a/data/md/people/Lorig-Charkoudian-d4354cae-a994-4b2d-863f-238322fc6135.yml +++ b/data/md/people/Lorig-Charkoudian-d4354cae-a994-4b2d-863f-238322fc6135.yml @@ -6,7 +6,6 @@ roles: - district: '20' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 226 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: lorig.charkoudian@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3423 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=charkoudian01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/charkoudian01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=charkoudian01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/charkoudian01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/charkoudian01 +image: http://mgaleg.maryland.gov/2020RS/images/charkoudian01.jpg given_name: Lorig family_name: Charkoudian diff --git a/data/md/people/Luke-Clippinger-1403e204-8965-4cb4-adcb-6754808e119a.yml b/data/md/people/Luke-Clippinger-1403e204-8965-4cb4-adcb-6754808e119a.yml index e6e7f97f61..5b05512be7 100644 --- a/data/md/people/Luke-Clippinger-1403e204-8965-4cb4-adcb-6754808e119a.yml +++ b/data/md/people/Luke-Clippinger-1403e204-8965-4cb4-adcb-6754808e119a.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3303 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=clippinger&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/clippinger sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=clippinger&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/clippinger.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/clippinger +image: http://mgaleg.maryland.gov/2020RS/images/clippinger.jpg other_identifiers: - identifier: MDL000391 scheme: legacy_openstates diff --git a/data/md/people/Maggie-McIntosh-2c2cebf4-5d3c-48c9-bd56-95481ba65c50.yml b/data/md/people/Maggie-McIntosh-2c2cebf4-5d3c-48c9-bd56-95481ba65c50.yml index bb4f8574a4..e141baf77a 100644 --- a/data/md/people/Maggie-McIntosh-2c2cebf4-5d3c-48c9-bd56-95481ba65c50.yml +++ b/data/md/people/Maggie-McIntosh-2c2cebf4-5d3c-48c9-bd56-95481ba65c50.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3407 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mcintosh&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mcintosh sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mcintosh&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mcintosh.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mcintosh +image: http://mgaleg.maryland.gov/2020RS/images/mcintosh.jpg other_identifiers: - identifier: MDL000327 scheme: legacy_openstates diff --git a/data/md/people/Malcolm-Augustine-6c4c1b4d-7c32-4d2b-83ab-d207f92e1818.yml b/data/md/people/Malcolm-Augustine-6c4c1b4d-7c32-4d2b-83ab-d207f92e1818.yml index 5578df0b89..6d474b3229 100644 --- a/data/md/people/Malcolm-Augustine-6c4c1b4d-7c32-4d2b-83ab-d207f92e1818.yml +++ b/data/md/people/Malcolm-Augustine-6c4c1b4d-7c32-4d2b-83ab-d207f92e1818.yml @@ -6,7 +6,6 @@ roles: - district: '47' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 3E Miller Senate Office Building;11Bladen St.;Annapolis, MD 21401 email: malcolm.augustine@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3745 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=augustine01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/augustine01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=augustine01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/augustine01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/augustine01 +image: http://mgaleg.maryland.gov/2020RS/images/augustine01.jpg given_name: Malcolm family_name: Augustine diff --git a/data/md/people/Marc-Korman-b86e252c-2904-4d28-9d2f-b13d854efa66.yml b/data/md/people/Marc-Korman-b86e252c-2904-4d28-9d2f-b13d854efa66.yml index 780544f987..e9232b2c9d 100644 --- a/data/md/people/Marc-Korman-b86e252c-2904-4d28-9d2f-b13d854efa66.yml +++ b/data/md/people/Marc-Korman-b86e252c-2904-4d28-9d2f-b13d854efa66.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3649 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=korman01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/korman01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=korman01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/korman01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/korman01 +image: http://mgaleg.maryland.gov/2020RS/images/korman01.jpg other_identifiers: - identifier: MDL000657 scheme: legacy_openstates diff --git a/data/md/people/Mark-N-Fisher-77d4130a-be8c-46a7-adc4-08ecd11ea6ee.yml b/data/md/people/Mark-N-Fisher-77d4130a-be8c-46a7-adc4-08ecd11ea6ee.yml index 4bc09486da..0f3ee46eaa 100644 --- a/data/md/people/Mark-N-Fisher-77d4130a-be8c-46a7-adc4-08ecd11ea6ee.yml +++ b/data/md/people/Mark-N-Fisher-77d4130a-be8c-46a7-adc4-08ecd11ea6ee.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3231 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fisher&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fisher sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fisher&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/fisher.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fisher +image: http://mgaleg.maryland.gov/2020RS/images/fisher.jpg other_identifiers: - identifier: MDL000394 scheme: legacy_openstates diff --git a/data/md/people/Mark-S-Chang-5393ab25-fbd9-455b-8da2-76c53e955823.yml b/data/md/people/Mark-S-Chang-5393ab25-fbd9-455b-8da2-76c53e955823.yml index 50f7c2912a..aa5dc47069 100644 --- a/data/md/people/Mark-S-Chang-5393ab25-fbd9-455b-8da2-76c53e955823.yml +++ b/data/md/people/Mark-S-Chang-5393ab25-fbd9-455b-8da2-76c53e955823.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3511 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=chang01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/chang01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=chang01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/chang01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/chang01 +image: http://mgaleg.maryland.gov/2020RS/images/chang01.jpg other_identifiers: - identifier: MDL000634 scheme: legacy_openstates diff --git a/data/md/people/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml b/data/md/people/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml new file mode 100644 index 0000000000..37583ae6c4 --- /dev/null +++ b/data/md/people/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml @@ -0,0 +1,27 @@ +id: ocd-person/5fff41d7-cea5-4e01-a4da-e4474d267691 +name: Marvin E. Holmes, Jr. +party: +- name: Democratic +roles: +- district: 23B + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +contact_details: +- address: 364 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: marvin.holmes@house.state.md.us + note: Capitol Office + voice: 410-841-3310 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=holmes&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/holmes +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=holmes&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/holmes +image: http://mgaleg.maryland.gov/2020RS/images/holmes.jpg +other_identifiers: +- identifier: MDL000294 + scheme: legacy_openstates +- identifier: MDL000528 + scheme: legacy_openstates +given_name: Marvin +family_name: Holmes diff --git a/data/md/people/Mary-A-Lehman-07185e4b-2314-476e-9c3b-48959096f2a5.yml b/data/md/people/Mary-A-Lehman-07185e4b-2314-476e-9c3b-48959096f2a5.yml index d82230c0ce..327974a5be 100644 --- a/data/md/people/Mary-A-Lehman-07185e4b-2314-476e-9c3b-48959096f2a5.yml +++ b/data/md/people/Mary-A-Lehman-07185e4b-2314-476e-9c3b-48959096f2a5.yml @@ -6,7 +6,6 @@ roles: - district: '21' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 317 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: mary.lehman@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3114 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lehman01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lehman01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lehman01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lehman01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lehman01 +image: http://mgaleg.maryland.gov/2020RS/images/lehman01.jpg given_name: Mary family_name: Lehman diff --git a/data/md/people/Mary-Ann-Lisanti-e7d2b23f-1380-46a8-845e-ea139d0ed51e.yml b/data/md/people/Mary-Ann-Lisanti-e7d2b23f-1380-46a8-845e-ea139d0ed51e.yml index 81e11aaef2..e04d673bca 100644 --- a/data/md/people/Mary-Ann-Lisanti-e7d2b23f-1380-46a8-845e-ea139d0ed51e.yml +++ b/data/md/people/Mary-Ann-Lisanti-e7d2b23f-1380-46a8-845e-ea139d0ed51e.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3331 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lisanti01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lisanti01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lisanti01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lisanti01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lisanti01 +image: http://mgaleg.maryland.gov/2020RS/images/lisanti01.jpg other_identifiers: - identifier: MDL000703 scheme: legacy_openstates diff --git a/data/md/people/Mary-Beth-Carozza-6e819331-2ab7-4a58-be19-1585dc2872ff.yml b/data/md/people/Mary-Beth-Carozza-6e819331-2ab7-4a58-be19-1585dc2872ff.yml index 8c6040fd16..fa28f744ad 100644 --- a/data/md/people/Mary-Beth-Carozza-6e819331-2ab7-4a58-be19-1585dc2872ff.yml +++ b/data/md/people/Mary-Beth-Carozza-6e819331-2ab7-4a58-be19-1585dc2872ff.yml @@ -10,16 +10,17 @@ roles: - district: '38' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 314 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 note: Capitol Office voice: 410-841-3645 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carozza02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carozza02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carozza02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/carozza02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carozza02 +image: http://mgaleg.maryland.gov/2020RS/images/carozza02.jpg other_identifiers: - identifier: MDL000695 scheme: legacy_openstates diff --git a/data/md/people/Mary-L-Washington-0bdef1bb-ea31-4a27-937c-eb680ae67343.yml b/data/md/people/Mary-L-Washington-0bdef1bb-ea31-4a27-937c-eb680ae67343.yml index c10b0fdf78..a5affee23f 100644 --- a/data/md/people/Mary-L-Washington-0bdef1bb-ea31-4a27-937c-eb680ae67343.yml +++ b/data/md/people/Mary-L-Washington-0bdef1bb-ea31-4a27-937c-eb680ae67343.yml @@ -1,5 +1,5 @@ id: ocd-person/0bdef1bb-ea31-4a27-937c-eb680ae67343 -name: Mary L. Washington +name: Mary Washington party: - name: Democratic roles: @@ -10,7 +10,6 @@ roles: - district: '43' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 102 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: mary.washington@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3145 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=washington01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/washington01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=washington01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/washington01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/washington01 +image: http://mgaleg.maryland.gov/2020RS/images/washington01.jpg other_identifiers: - identifier: MDL000415 scheme: legacy_openstates @@ -28,3 +29,5 @@ other_identifiers: scheme: legacy_openstates given_name: Mary family_name: Washington +other_names: +- name: Mary L. Washington diff --git a/data/md/people/Matthew-Morgan-d7346fb4-948a-4e86-8b06-5e43345e4b4a.yml b/data/md/people/Matthew-Morgan-d7346fb4-948a-4e86-8b06-5e43345e4b4a.yml index 9fdb10209a..1fec972d72 100644 --- a/data/md/people/Matthew-Morgan-d7346fb4-948a-4e86-8b06-5e43345e4b4a.yml +++ b/data/md/people/Matthew-Morgan-d7346fb4-948a-4e86-8b06-5e43345e4b4a.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3170 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=morgan02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/morgan02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=morgan02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/morgan02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/morgan02 +image: http://mgaleg.maryland.gov/2020RS/images/morgan02.jpg other_identifiers: - identifier: MDL000674 scheme: legacy_openstates diff --git a/data/md/people/Melissa-Wells-55cb04cb-cd28-44ed-a4a4-dcb2b064ede9.yml b/data/md/people/Melissa-Wells-55cb04cb-cd28-44ed-a4a4-dcb2b064ede9.yml index 7eaf789dbc..cdf97b76bf 100644 --- a/data/md/people/Melissa-Wells-55cb04cb-cd28-44ed-a4a4-dcb2b064ede9.yml +++ b/data/md/people/Melissa-Wells-55cb04cb-cd28-44ed-a4a4-dcb2b064ede9.yml @@ -6,7 +6,6 @@ roles: - district: '40' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 315 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: melissa.wells@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3545 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wells01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wells02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wells01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/wells01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wells02 +image: http://mgaleg.maryland.gov/2020RS/images/wells02.jpg given_name: Melissa family_name: Wells diff --git a/data/md/people/Melony-Griffith-e79608fa-7921-49f2-ba2e-d10f70008a5b.yml b/data/md/people/Melony-Griffith-e79608fa-7921-49f2-ba2e-d10f70008a5b.yml index 58eecb22bd..ab4a11a055 100644 --- a/data/md/people/Melony-Griffith-e79608fa-7921-49f2-ba2e-d10f70008a5b.yml +++ b/data/md/people/Melony-Griffith-e79608fa-7921-49f2-ba2e-d10f70008a5b.yml @@ -6,15 +6,16 @@ roles: - district: '25' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 220 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 note: Capitol Office voice: 410-841-3127 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=griffith01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/griffith01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=griffith01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/griffith01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/griffith01 +image: http://mgaleg.maryland.gov/2020RS/images/griffith01.jpg given_name: Melony family_name: Griffith diff --git a/data/md/people/Michael-A-Jackson-66fe4760-a59b-4503-98d4-875408b7352f.yml b/data/md/people/Michael-A-Jackson-66fe4760-a59b-4503-98d4-875408b7352f.yml index 94da37e322..d4515a6a1e 100644 --- a/data/md/people/Michael-A-Jackson-66fe4760-a59b-4503-98d4-875408b7352f.yml +++ b/data/md/people/Michael-A-Jackson-66fe4760-a59b-4503-98d4-875408b7352f.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3103 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jackson01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jackson01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=jackson01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/jackson01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/jackson01 +image: http://mgaleg.maryland.gov/2020RS/images/jackson01.jpg other_identifiers: - identifier: MDL000621 scheme: legacy_openstates diff --git a/data/md/people/Michael-E-Malone-aef56355-ca46-45a2-8364-ac00a4cf001a.yml b/data/md/people/Michael-E-Malone-aef56355-ca46-45a2-8364-ac00a4cf001a.yml index 3bac751bd0..e2492b683b 100644 --- a/data/md/people/Michael-E-Malone-aef56355-ca46-45a2-8364-ac00a4cf001a.yml +++ b/data/md/people/Michael-E-Malone-aef56355-ca46-45a2-8364-ac00a4cf001a.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3510 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=malone01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/malone01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=malone01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/malone01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/malone01 +image: http://mgaleg.maryland.gov/2020RS/images/malone01.jpg other_identifiers: - identifier: MDL000720 scheme: legacy_openstates diff --git a/data/md/people/Michael-J-Hough-8370ae8e-8e9b-4a0f-b741-0bd0f6db2038.yml b/data/md/people/Michael-J-Hough-8370ae8e-8e9b-4a0f-b741-0bd0f6db2038.yml index 18527cb34a..d642c62f62 100644 --- a/data/md/people/Michael-J-Hough-8370ae8e-8e9b-4a0f-b741-0bd0f6db2038.yml +++ b/data/md/people/Michael-J-Hough-8370ae8e-8e9b-4a0f-b741-0bd0f6db2038.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3704 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hough&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hough sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hough&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hough.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hough +image: http://mgaleg.maryland.gov/2020RS/images/hough.jpg other_identifiers: - identifier: MDL000398 scheme: legacy_openstates diff --git a/data/md/people/Michele-Guyton-b120ed9c-3669-44e7-a5ef-710b716071e7.yml b/data/md/people/Michele-Guyton-b120ed9c-3669-44e7-a5ef-710b716071e7.yml index 570c4eaf47..0bbe380508 100644 --- a/data/md/people/Michele-Guyton-b120ed9c-3669-44e7-a5ef-710b716071e7.yml +++ b/data/md/people/Michele-Guyton-b120ed9c-3669-44e7-a5ef-710b716071e7.yml @@ -6,7 +6,6 @@ roles: - district: 42B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 306 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: michele.guyton@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3793 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=guyton01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/guyton01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=guyton01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/guyton01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/guyton01 +image: http://mgaleg.maryland.gov/2020RS/images/guyton01.jpg given_name: Michele family_name: Guyton diff --git a/data/md/people/Mike-Griffith-79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897.yml b/data/md/people/Mike-Griffith-79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897.yml new file mode 100644 index 0000000000..107327b6d1 --- /dev/null +++ b/data/md/people/Mike-Griffith-79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897.yml @@ -0,0 +1,14 @@ +id: ocd-person/79a4ffd2-8ca9-4fb2-beb2-bcbfd1d49897 +name: Mike Griffith +party: +- name: Republican +roles: +- district: 35B + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/griffith02 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/griffith02 +image: http://mgaleg.maryland.gov/2020RS/images/griffith02.jpg +contact_details: [] diff --git a/data/md/people/Mike-McKay-5bdf592a-c502-4b60-8799-8ed681950475.yml b/data/md/people/Mike-McKay-5bdf592a-c502-4b60-8799-8ed681950475.yml index 80baff5e85..d8c6a721aa 100644 --- a/data/md/people/Mike-McKay-5bdf592a-c502-4b60-8799-8ed681950475.yml +++ b/data/md/people/Mike-McKay-5bdf592a-c502-4b60-8799-8ed681950475.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3321 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mckay01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mckay01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mckay01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mckay01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mckay01 +image: http://mgaleg.maryland.gov/2020RS/images/mckay01.jpg other_identifiers: - identifier: MDL000628 scheme: legacy_openstates diff --git a/data/md/people/Mike-Rogers-eb13f926-c0f1-426b-b0a7-63c324f9a558.yml b/data/md/people/Mike-Rogers-eb13f926-c0f1-426b-b0a7-63c324f9a558.yml index 5088188b30..d82fe6428a 100644 --- a/data/md/people/Mike-Rogers-eb13f926-c0f1-426b-b0a7-63c324f9a558.yml +++ b/data/md/people/Mike-Rogers-eb13f926-c0f1-426b-b0a7-63c324f9a558.yml @@ -6,7 +6,6 @@ roles: - district: '32' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 162 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: mike.rogers@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3372 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rogers01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rogers01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rogers01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/rogers01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rogers01 +image: http://mgaleg.maryland.gov/2020RS/images/rogers01.jpg given_name: Mike family_name: Rogers diff --git a/data/md/people/Nancy-J-King-92f41e40-4782-4c52-81a1-de8f78e05ab1.yml b/data/md/people/Nancy-J-King-92f41e40-4782-4c52-81a1-de8f78e05ab1.yml index 6ecc5f396c..082880f40c 100644 --- a/data/md/people/Nancy-J-King-92f41e40-4782-4c52-81a1-de8f78e05ab1.yml +++ b/data/md/people/Nancy-J-King-92f41e40-4782-4c52-81a1-de8f78e05ab1.yml @@ -14,9 +14,11 @@ contact_details: voice: 301-858-3686 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=king&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/king sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=king&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/king.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/king +image: http://mgaleg.maryland.gov/2020RS/images/king.jpg other_identifiers: - identifier: MDL000213 scheme: legacy_openstates diff --git a/data/md/people/Ned-Carey-e20d321d-a656-4792-834b-ab102630ca82.yml b/data/md/people/Ned-Carey-e20d321d-a656-4792-834b-ab102630ca82.yml index db0b448c7a..661b427f11 100644 --- a/data/md/people/Ned-Carey-e20d321d-a656-4792-834b-ab102630ca82.yml +++ b/data/md/people/Ned-Carey-e20d321d-a656-4792-834b-ab102630ca82.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3047 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carey01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carey01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carey01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/carey01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carey01 +image: http://mgaleg.maryland.gov/2020RS/images/carey01.jpg other_identifiers: - identifier: MDL000665 scheme: legacy_openstates diff --git a/data/md/people/Neil-Parrott-98b2bd07-c08e-468c-9037-2a3eb536d153.yml b/data/md/people/Neil-Parrott-98b2bd07-c08e-468c-9037-2a3eb536d153.yml index ade7f6aab2..1c6786d8a2 100644 --- a/data/md/people/Neil-Parrott-98b2bd07-c08e-468c-9037-2a3eb536d153.yml +++ b/data/md/people/Neil-Parrott-98b2bd07-c08e-468c-9037-2a3eb536d153.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3636 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=parrott&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/parrott sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=parrott&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/parrott.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/parrott +image: http://mgaleg.maryland.gov/2020RS/images/parrott.jpg other_identifiers: - identifier: MDL000407 scheme: legacy_openstates diff --git a/data/md/people/Nicholaus-R-Kipke-36e6313f-b85b-4c14-9ff4-e23fc015d904.yml b/data/md/people/Nicholaus-R-Kipke-36e6313f-b85b-4c14-9ff4-e23fc015d904.yml index e3b4eff7f8..73727ac6b5 100644 --- a/data/md/people/Nicholaus-R-Kipke-36e6313f-b85b-4c14-9ff4-e23fc015d904.yml +++ b/data/md/people/Nicholaus-R-Kipke-36e6313f-b85b-4c14-9ff4-e23fc015d904.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3421 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kipke&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kipke sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kipke&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kipke.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kipke +image: http://mgaleg.maryland.gov/2020RS/images/kipke.jpg other_identifiers: - identifier: MDL000309 scheme: legacy_openstates diff --git a/data/md/people/Nick-Charles-23c9c495-1fe1-4258-bb15-7f1183ffc4fe.yml b/data/md/people/Nick-Charles-23c9c495-1fe1-4258-bb15-7f1183ffc4fe.yml index 28480acaa4..538fddd4a1 100644 --- a/data/md/people/Nick-Charles-23c9c495-1fe1-4258-bb15-7f1183ffc4fe.yml +++ b/data/md/people/Nick-Charles-23c9c495-1fe1-4258-bb15-7f1183ffc4fe.yml @@ -6,7 +6,6 @@ roles: - district: '25' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 206 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: nick.charles@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3707 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=charles01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/charles01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=charles01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/charles01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/charles01 +image: http://mgaleg.maryland.gov/2020RS/images/charles01.jpg given_name: Nick family_name: Charles diff --git a/data/md/people/Nick-Mosby-a77b367d-3248-45f7-8714-ded55a24a582.yml b/data/md/people/Nick-Mosby-a77b367d-3248-45f7-8714-ded55a24a582.yml index 425eabf404..bcdf9723c7 100644 --- a/data/md/people/Nick-Mosby-a77b367d-3248-45f7-8714-ded55a24a582.yml +++ b/data/md/people/Nick-Mosby-a77b367d-3248-45f7-8714-ded55a24a582.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3520 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mosby01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mosby01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mosby01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mosby01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mosby01 +image: http://mgaleg.maryland.gov/2020RS/images/mosby01.jpg other_identifiers: - identifier: MDL000733 scheme: legacy_openstates diff --git a/data/md/people/Nicole-A-Williams-0e07b201-0a1a-4a45-af43-f4d9d779b409.yml b/data/md/people/Nicole-A-Williams-0e07b201-0a1a-4a45-af43-f4d9d779b409.yml new file mode 100644 index 0000000000..9e42345c1e --- /dev/null +++ b/data/md/people/Nicole-A-Williams-0e07b201-0a1a-4a45-af43-f4d9d779b409.yml @@ -0,0 +1,14 @@ +id: ocd-person/0e07b201-0a1a-4a45-af43-f4d9d779b409 +name: Nicole A. Williams +party: +- name: Democratic +roles: +- district: '22' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/williams01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/williams01 +image: http://mgaleg.maryland.gov/2020RS/images/williams01.jpg +contact_details: [] diff --git a/data/md/people/Nino-Mangione-7817a7bd-51a6-456a-a2df-4b9e3523d181.yml b/data/md/people/Nino-Mangione-7817a7bd-51a6-456a-a2df-4b9e3523d181.yml index 7227429cfe..ed89a1ce0b 100644 --- a/data/md/people/Nino-Mangione-7817a7bd-51a6-456a-a2df-4b9e3523d181.yml +++ b/data/md/people/Nino-Mangione-7817a7bd-51a6-456a-a2df-4b9e3523d181.yml @@ -6,15 +6,16 @@ roles: - district: 42B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 319 House Office Building;6 Bladen Street;Annapolis, MD 21401 note: Capitol Office voice: 410-841-3510 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mangione01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mangione01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mangione01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mangione01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mangione01 +image: http://mgaleg.maryland.gov/2020RS/images/mangione01.jpg given_name: Nino family_name: Mangione diff --git a/data/md/people/Obie-Patterson-23a68f14-b511-4326-aed4-374f51d5cbd9.yml b/data/md/people/Obie-Patterson-23a68f14-b511-4326-aed4-374f51d5cbd9.yml index cddfa6f6ac..ea23426fda 100644 --- a/data/md/people/Obie-Patterson-23a68f14-b511-4326-aed4-374f51d5cbd9.yml +++ b/data/md/people/Obie-Patterson-23a68f14-b511-4326-aed4-374f51d5cbd9.yml @@ -6,7 +6,6 @@ roles: - district: '26' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 201 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: obie.patterson@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3092 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=patterson03&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/patterson03 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=patterson03&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/patterson03.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/patterson03 +image: http://mgaleg.maryland.gov/2020RS/images/patterson03.jpg given_name: Obie family_name: Patterson diff --git a/data/md/people/Pam-Queen-aa70aec7-1d13-4ac0-912d-408ae8ee0763.yml b/data/md/people/Pam-Queen-aa70aec7-1d13-4ac0-912d-408ae8ee0763.yml index 17a1f6cc37..edfeaab8ad 100644 --- a/data/md/people/Pam-Queen-aa70aec7-1d13-4ac0-912d-408ae8ee0763.yml +++ b/data/md/people/Pam-Queen-aa70aec7-1d13-4ac0-912d-408ae8ee0763.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3380 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=queen01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/queen01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=queen01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/queen01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/queen01 +image: http://mgaleg.maryland.gov/2020RS/images/queen01.jpg other_identifiers: - identifier: MDL000726 scheme: legacy_openstates diff --git a/data/md/people/Pamela-Beidle-15921e4d-a07c-4ad7-863c-1d8dfd2d6725.yml b/data/md/people/Pamela-Beidle-15921e4d-a07c-4ad7-863c-1d8dfd2d6725.yml index 9602d4732d..ebdf6ddf05 100644 --- a/data/md/people/Pamela-Beidle-15921e4d-a07c-4ad7-863c-1d8dfd2d6725.yml +++ b/data/md/people/Pamela-Beidle-15921e4d-a07c-4ad7-863c-1d8dfd2d6725.yml @@ -10,7 +10,6 @@ roles: - district: '32' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 202 James Senate Office Building;11 Bladen Streeta;Annapolis, MD 21401 email: pamela.beidle@senate.state.md.us @@ -18,9 +17,11 @@ contact_details: voice: 410-841-3593 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=beidle01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/beidle01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=beidle01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/beidle01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/beidle01 +image: http://mgaleg.maryland.gov/2020RS/images/beidle01.jpg other_identifiers: - identifier: MDL000246 scheme: legacy_openstates diff --git a/data/md/people/Pat-Young-8d598bfe-608b-4ffc-8925-81f9e96c021e.yml b/data/md/people/Pat-Young-8d598bfe-608b-4ffc-8925-81f9e96c021e.yml index 3d1c859b92..021ecedb19 100644 --- a/data/md/people/Pat-Young-8d598bfe-608b-4ffc-8925-81f9e96c021e.yml +++ b/data/md/people/Pat-Young-8d598bfe-608b-4ffc-8925-81f9e96c021e.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3544 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young03&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young03 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young03&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/young03.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young03 +image: http://mgaleg.maryland.gov/2020RS/images/young03.jpg other_identifiers: - identifier: MDL000670 scheme: legacy_openstates diff --git a/data/md/people/Paul-Corderman-6605f7aa-80cb-4ee0-8d0d-18cff943f158.yml b/data/md/people/Paul-Corderman-6605f7aa-80cb-4ee0-8d0d-18cff943f158.yml index aaf56f8aa8..18f6bbef76 100644 --- a/data/md/people/Paul-Corderman-6605f7aa-80cb-4ee0-8d0d-18cff943f158.yml +++ b/data/md/people/Paul-Corderman-6605f7aa-80cb-4ee0-8d0d-18cff943f158.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3125 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=corderman01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/corderman01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=corderman01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/corderman01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/corderman01 +image: http://mgaleg.maryland.gov/2020RS/images/corderman01.jpg other_identifiers: - identifier: MDL000740 scheme: legacy_openstates diff --git a/data/md/people/Paul-G-Pinsky-622eeed1-5fc2-46dd-9709-25d065ebd894.yml b/data/md/people/Paul-G-Pinsky-622eeed1-5fc2-46dd-9709-25d065ebd894.yml index aaa18df065..28bc051da4 100644 --- a/data/md/people/Paul-G-Pinsky-622eeed1-5fc2-46dd-9709-25d065ebd894.yml +++ b/data/md/people/Paul-G-Pinsky-622eeed1-5fc2-46dd-9709-25d065ebd894.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3155 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pinsky&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pinsky sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pinsky&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/pinsky.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pinsky +image: http://mgaleg.maryland.gov/2020RS/images/pinsky.jpg other_identifiers: - identifier: MDL000226 scheme: legacy_openstates diff --git a/data/md/people/Regina-T-Boyce-f25013b8-d93b-46bf-a1ef-8b368731040d.yml b/data/md/people/Regina-T-Boyce-f25013b8-d93b-46bf-a1ef-8b368731040d.yml index a2381ab495..66dcbcf7e7 100644 --- a/data/md/people/Regina-T-Boyce-f25013b8-d93b-46bf-a1ef-8b368731040d.yml +++ b/data/md/people/Regina-T-Boyce-f25013b8-d93b-46bf-a1ef-8b368731040d.yml @@ -6,7 +6,6 @@ roles: - district: '43' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 316 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: regina.boyce@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3476 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=boyce01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/boyce01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=boyce01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/boyce01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/boyce01 +image: http://mgaleg.maryland.gov/2020RS/images/boyce01.jpg given_name: Regina family_name: Boyce diff --git a/data/md/people/Ric-Metzgar-253942ff-e83a-46ca-a05a-2e8e8644b4c2.yml b/data/md/people/Ric-Metzgar-253942ff-e83a-46ca-a05a-2e8e8644b4c2.yml index 93bad724ca..5461785b96 100644 --- a/data/md/people/Ric-Metzgar-253942ff-e83a-46ca-a05a-2e8e8644b4c2.yml +++ b/data/md/people/Ric-Metzgar-253942ff-e83a-46ca-a05a-2e8e8644b4c2.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3332 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=metzgar01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/metzgar01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=metzgar01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/metzgar01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/metzgar01 +image: http://mgaleg.maryland.gov/2020RS/images/metzgar01.jpg other_identifiers: - identifier: MDL000685 scheme: legacy_openstates diff --git a/data/md/people/Rick-Impallaria-544e1b98-6819-43dd-8033-2a19cb6ac1f8.yml b/data/md/people/Rick-Impallaria-544e1b98-6819-43dd-8033-2a19cb6ac1f8.yml index 172352e836..fec374f719 100644 --- a/data/md/people/Rick-Impallaria-544e1b98-6819-43dd-8033-2a19cb6ac1f8.yml +++ b/data/md/people/Rick-Impallaria-544e1b98-6819-43dd-8033-2a19cb6ac1f8.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3289 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=impallaria&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/impallaria sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=impallaria&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/impallaria.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/impallaria +image: http://mgaleg.maryland.gov/2020RS/images/impallaria.jpg other_identifiers: - identifier: MDL000298 scheme: legacy_openstates diff --git a/data/md/people/Robbyn-Lewis-d0e4f14b-c4a3-485e-88f7-ea7a86f67ca1.yml b/data/md/people/Robbyn-Lewis-d0e4f14b-c4a3-485e-88f7-ea7a86f67ca1.yml index ef2e60e527..d435189b3c 100644 --- a/data/md/people/Robbyn-Lewis-d0e4f14b-c4a3-485e-88f7-ea7a86f67ca1.yml +++ b/data/md/people/Robbyn-Lewis-d0e4f14b-c4a3-485e-88f7-ea7a86f67ca1.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3772 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lewis01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lewis01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lewis01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lewis01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lewis01 +image: http://mgaleg.maryland.gov/2020RS/images/lewis01.jpg other_identifiers: - identifier: MDL000731 scheme: legacy_openstates diff --git a/data/md/people/Robert-B-Long-f84bc5c0-1a2f-4eac-8a7a-63c879ad56e5.yml b/data/md/people/Robert-B-Long-f84bc5c0-1a2f-4eac-8a7a-63c879ad56e5.yml index 6e5c492ae7..bc19e1304a 100644 --- a/data/md/people/Robert-B-Long-f84bc5c0-1a2f-4eac-8a7a-63c879ad56e5.yml +++ b/data/md/people/Robert-B-Long-f84bc5c0-1a2f-4eac-8a7a-63c879ad56e5.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3458 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=long01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/long01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=long01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/long01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/long01 +image: http://mgaleg.maryland.gov/2020RS/images/long01.jpg other_identifiers: - identifier: MDL000658 scheme: legacy_openstates diff --git a/data/md/people/Robert-Cassilly-a8bf81cc-99c4-445f-a43c-f726fb928968.yml b/data/md/people/Robert-Cassilly-a8bf81cc-99c4-445f-a43c-f726fb928968.yml index a322fc90fc..a8a4d96442 100644 --- a/data/md/people/Robert-Cassilly-a8bf81cc-99c4-445f-a43c-f726fb928968.yml +++ b/data/md/people/Robert-Cassilly-a8bf81cc-99c4-445f-a43c-f726fb928968.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3158 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cassilly02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cassilly02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=cassilly02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/cassilly02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cassilly02 +image: http://mgaleg.maryland.gov/2020RS/images/cassilly02.jpg other_identifiers: - identifier: MDL000646 scheme: legacy_openstates diff --git a/data/md/people/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml b/data/md/people/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml new file mode 100644 index 0000000000..38351cfb3f --- /dev/null +++ b/data/md/people/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml @@ -0,0 +1,25 @@ +id: ocd-person/84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a +name: Robin L. Grammer, Jr. +party: +- name: Republican +roles: +- district: '6' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +contact_details: +- address: 307 House Office Building;6 Bladen Street;Annapolis, MD 21401 + email: Robin.Grammer@house.state.md.us + note: Capitol Office + voice: 410-841-3298 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=grammer01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/grammer01 +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=grammer01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/grammer01 +image: http://mgaleg.maryland.gov/2020RS/images/grammer01.jpg +other_identifiers: +- identifier: MDL000681 + scheme: legacy_openstates +given_name: Robin +family_name: Grammer diff --git a/data/md/people/Ron-Watson-177ee919-8310-4485-9b07-041cd83b2947.yml b/data/md/people/Ron-Watson-177ee919-8310-4485-9b07-041cd83b2947.yml index bde5b6a13d..b6cf5ccabc 100644 --- a/data/md/people/Ron-Watson-177ee919-8310-4485-9b07-041cd83b2947.yml +++ b/data/md/people/Ron-Watson-177ee919-8310-4485-9b07-041cd83b2947.yml @@ -6,7 +6,6 @@ roles: - district: 23B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 207 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: ron.watson@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3488 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=watson03&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/watson03 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=watson03&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/watson03.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/watson03 +image: http://mgaleg.maryland.gov/2020RS/images/watson03.jpg given_name: Ron family_name: Watson diff --git a/data/md/people/Ronald-N-Young-dae4192a-93c9-4a49-bc77-83e99825dad1.yml b/data/md/people/Ronald-N-Young-dae4192a-93c9-4a49-bc77-83e99825dad1.yml index f085da62e7..75f656da16 100644 --- a/data/md/people/Ronald-N-Young-dae4192a-93c9-4a49-bc77-83e99825dad1.yml +++ b/data/md/people/Ronald-N-Young-dae4192a-93c9-4a49-bc77-83e99825dad1.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3575 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=young&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/young.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/young +image: http://mgaleg.maryland.gov/2020RS/images/young.jpg other_identifiers: - identifier: MDL000387 scheme: legacy_openstates diff --git a/data/md/people/Samuel-I-Rosenberg-9ec0fe7d-36ae-437b-9bcf-754da8e4e247.yml b/data/md/people/Samuel-I-Rosenberg-9ec0fe7d-36ae-437b-9bcf-754da8e4e247.yml index c55029a1df..ff1ce7ea61 100644 --- a/data/md/people/Samuel-I-Rosenberg-9ec0fe7d-36ae-437b-9bcf-754da8e4e247.yml +++ b/data/md/people/Samuel-I-Rosenberg-9ec0fe7d-36ae-437b-9bcf-754da8e4e247.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3297 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rosenberg&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rosenberg sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=rosenberg&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/rosenberg.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/rosenberg +image: http://mgaleg.maryland.gov/2020RS/images/rosenberg.jpg other_identifiers: - identifier: MDL000349 scheme: legacy_openstates diff --git a/data/md/people/Sara-Love-b9f21b96-4bb5-43e8-a5d8-19cec0332315.yml b/data/md/people/Sara-Love-b9f21b96-4bb5-43e8-a5d8-19cec0332315.yml index cde5113de6..55d39b6ed1 100644 --- a/data/md/people/Sara-Love-b9f21b96-4bb5-43e8-a5d8-19cec0332315.yml +++ b/data/md/people/Sara-Love-b9f21b96-4bb5-43e8-a5d8-19cec0332315.yml @@ -6,7 +6,6 @@ roles: - district: '16' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 210 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: sara.love@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3454 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=love01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/love01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=love01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/love01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/love01 +image: http://mgaleg.maryland.gov/2020RS/images/love01.jpg given_name: Sara family_name: Love diff --git a/data/md/people/Sarah-K-Elfreth-a649f616-ab89-4e4d-bfbe-4335d1d67d1a.yml b/data/md/people/Sarah-K-Elfreth-a649f616-ab89-4e4d-bfbe-4335d1d67d1a.yml index 7ce4cb384e..4ead6f67a0 100644 --- a/data/md/people/Sarah-K-Elfreth-a649f616-ab89-4e4d-bfbe-4335d1d67d1a.yml +++ b/data/md/people/Sarah-K-Elfreth-a649f616-ab89-4e4d-bfbe-4335d1d67d1a.yml @@ -6,7 +6,6 @@ roles: - district: '30' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper - start_date: '2019-01-09' contact_details: - address: 103 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: sarah.elfreth@senate.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3578 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=elfreth01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/elfreth01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=elfreth01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/elfreth01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/elfreth01 +image: http://mgaleg.maryland.gov/2020RS/images/elfreth01.jpg given_name: Sarah family_name: Elfreth diff --git a/data/md/people/Seth-A-Howard-32a0f09e-394f-446c-93c7-9cff2ea28b83.yml b/data/md/people/Seth-A-Howard-32a0f09e-394f-446c-93c7-9cff2ea28b83.yml index 9d8e55907d..49003e9d1e 100644 --- a/data/md/people/Seth-A-Howard-32a0f09e-394f-446c-93c7-9cff2ea28b83.yml +++ b/data/md/people/Seth-A-Howard-32a0f09e-394f-446c-93c7-9cff2ea28b83.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3439 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=howard01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/howard01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=howard01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/howard01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/howard01 +image: http://mgaleg.maryland.gov/2020RS/images/howard01.jpg other_identifiers: - identifier: MDL000630 scheme: legacy_openstates diff --git a/data/md/people/Shane-E-Pendergrass-1eb2ab76-7cb6-48c9-9acd-dbe6df8638f2.yml b/data/md/people/Shane-E-Pendergrass-1eb2ab76-7cb6-48c9-9acd-dbe6df8638f2.yml index b399f9b624..f6449272e2 100644 --- a/data/md/people/Shane-E-Pendergrass-1eb2ab76-7cb6-48c9-9acd-dbe6df8638f2.yml +++ b/data/md/people/Shane-E-Pendergrass-1eb2ab76-7cb6-48c9-9acd-dbe6df8638f2.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3139 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pendergrass&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pendergrass sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=pendergrass&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/pendergrass.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/pendergrass +image: http://mgaleg.maryland.gov/2020RS/images/pendergrass.jpg other_identifiers: - identifier: MDL000342 scheme: legacy_openstates diff --git a/data/md/people/Shaneka-Henson-be45d2a1-057a-49ea-a810-5317478c26b1.yml b/data/md/people/Shaneka-Henson-be45d2a1-057a-49ea-a810-5317478c26b1.yml new file mode 100644 index 0000000000..0c05603218 --- /dev/null +++ b/data/md/people/Shaneka-Henson-be45d2a1-057a-49ea-a810-5317478c26b1.yml @@ -0,0 +1,14 @@ +id: ocd-person/be45d2a1-057a-49ea-a810-5317478c26b1 +name: Shaneka Henson +party: +- name: Democratic +roles: +- district: 30A + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/henson01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/henson01 +image: http://mgaleg.maryland.gov/2020RS/images/henson01.jpg +contact_details: [] diff --git a/data/md/people/Sheila-Ruth-4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed.yml b/data/md/people/Sheila-Ruth-4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed.yml new file mode 100644 index 0000000000..46dc7bc7f6 --- /dev/null +++ b/data/md/people/Sheila-Ruth-4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed.yml @@ -0,0 +1,14 @@ +id: ocd-person/4357a17f-f87b-4ae0-afe6-5d8ef9b3d7ed +name: Sheila Ruth +party: +- name: Democratic +roles: +- district: 44B + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: lower +links: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ruth01 +sources: +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/ruth01 +image: http://mgaleg.maryland.gov/2020RS/images/ruth01.jpg +contact_details: [] diff --git a/data/md/people/Shelly-Hettleman-77cad368-7e81-4ff2-91d8-62ecacd38fe7.yml b/data/md/people/Shelly-Hettleman-77cad368-7e81-4ff2-91d8-62ecacd38fe7.yml index 727f51959c..5dbdf45923 100644 --- a/data/md/people/Shelly-Hettleman-77cad368-7e81-4ff2-91d8-62ecacd38fe7.yml +++ b/data/md/people/Shelly-Hettleman-77cad368-7e81-4ff2-91d8-62ecacd38fe7.yml @@ -6,12 +6,11 @@ roles: - district: '11' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower -contact_details: -- address: 311 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: Shelly.Hettleman@house.state.md.us - fax: 410-841-3373 - note: Capitol Office - voice: 410-841-3833 + end_date: 2020-02-03 +- district: '11' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper + start_date: 2020-02-03 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hettleman01&stab=01 sources: diff --git a/data/md/people/Sheree-Sample-Hughes-1bad5583-acbc-451b-9425-0a8936f1e7b5.yml b/data/md/people/Sheree-Sample-Hughes-1bad5583-acbc-451b-9425-0a8936f1e7b5.yml index d6c728cbd8..d2300b110c 100644 --- a/data/md/people/Sheree-Sample-Hughes-1bad5583-acbc-451b-9425-0a8936f1e7b5.yml +++ b/data/md/people/Sheree-Sample-Hughes-1bad5583-acbc-451b-9425-0a8936f1e7b5.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3427 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sample01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sample01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sample01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/sample01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sample01 +image: http://mgaleg.maryland.gov/2020RS/images/sample01.jpg other_identifiers: - identifier: MDL000683 scheme: legacy_openstates diff --git a/data/md/people/Sid-Saab-7d7322ad-3110-478c-b94e-00f02a678940.yml b/data/md/people/Sid-Saab-7d7322ad-3110-478c-b94e-00f02a678940.yml index 0f45df8f89..d7daddfaf0 100644 --- a/data/md/people/Sid-Saab-7d7322ad-3110-478c-b94e-00f02a678940.yml +++ b/data/md/people/Sid-Saab-7d7322ad-3110-478c-b94e-00f02a678940.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3551 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=saab01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/saab01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=saab01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/saab01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/saab01 +image: http://mgaleg.maryland.gov/2020RS/images/saab01.jpg other_identifiers: - identifier: MDL000700 scheme: legacy_openstates diff --git a/data/md/people/Stephanie-Smith-0f8f065b-2d2e-4da3-91d4-988f16c72ef1.yml b/data/md/people/Stephanie-Smith-0f8f065b-2d2e-4da3-91d4-988f16c72ef1.yml index 490acb3975..41980fd696 100644 --- a/data/md/people/Stephanie-Smith-0f8f065b-2d2e-4da3-91d4-988f16c72ef1.yml +++ b/data/md/people/Stephanie-Smith-0f8f065b-2d2e-4da3-91d4-988f16c72ef1.yml @@ -6,7 +6,6 @@ roles: - district: '45' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 316 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: stephanie.smith@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3486 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith03&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith03 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith03&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/smith03.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith03 +image: http://mgaleg.maryland.gov/2020RS/images/smith03.jpg given_name: Stephanie family_name: Smith diff --git a/data/md/people/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml b/data/md/people/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml new file mode 100644 index 0000000000..5c9b08164e --- /dev/null +++ b/data/md/people/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml @@ -0,0 +1,30 @@ +id: ocd-person/2271e390-772d-440c-9601-f72ed997092b +name: Stephen S. Hershey, Jr. +party: +- name: Republican +roles: +- district: '36' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper +contact_details: +- address: 420 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 + email: steve.hershey@senate.state.md.us + fax: 410-841-3762 + note: Capitol Office + voice: 410-841-3639 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hershey&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hershey +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hershey&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hershey +image: http://mgaleg.maryland.gov/2020RS/images/hershey.jpg +other_identifiers: +- identifier: MDL000396 + scheme: legacy_openstates +- identifier: MDL000525 + scheme: legacy_openstates +- identifier: MDL000616 + scheme: legacy_openstates +given_name: Stephen +family_name: Hershey diff --git a/data/md/people/Steve-Johnson-8733ef57-5d09-47f2-9a16-d96cdc43485b.yml b/data/md/people/Steve-Johnson-8733ef57-5d09-47f2-9a16-d96cdc43485b.yml index cc4e643231..1a08413e42 100644 --- a/data/md/people/Steve-Johnson-8733ef57-5d09-47f2-9a16-d96cdc43485b.yml +++ b/data/md/people/Steve-Johnson-8733ef57-5d09-47f2-9a16-d96cdc43485b.yml @@ -6,15 +6,16 @@ roles: - district: 34A jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 215 House Office Building;6 Bladen Street;Annapolis, MD 21401 note: Capitol Office voice: 410-841-3280 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=johnson01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/johnson01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=johnson01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/johnson01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/johnson01 +image: http://mgaleg.maryland.gov/2020RS/images/johnson01.jpg given_name: Steve family_name: Johnson diff --git a/data/md/people/Steven-J-Arentz-15b13c83-9ee7-43b6-a32a-f26d76573d54.yml b/data/md/people/Steven-J-Arentz-15b13c83-9ee7-43b6-a32a-f26d76573d54.yml index c1f73a5fd3..7dce033b64 100644 --- a/data/md/people/Steven-J-Arentz-15b13c83-9ee7-43b6-a32a-f26d76573d54.yml +++ b/data/md/people/Steven-J-Arentz-15b13c83-9ee7-43b6-a32a-f26d76573d54.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3543 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=arentz01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/arentz01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=arentz01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/arentz01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/arentz01 +image: http://mgaleg.maryland.gov/2020RS/images/arentz01.jpg other_identifiers: - identifier: MDL000618 scheme: legacy_openstates diff --git a/data/md/people/Susan-C-Lee-31b36a34-8e53-4b58-889f-221cf28c410c.yml b/data/md/people/Susan-C-Lee-31b36a34-8e53-4b58-889f-221cf28c410c.yml index 40531d4329..7d380b5c8e 100644 --- a/data/md/people/Susan-C-Lee-31b36a34-8e53-4b58-889f-221cf28c410c.yml +++ b/data/md/people/Susan-C-Lee-31b36a34-8e53-4b58-889f-221cf28c410c.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3124 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lee&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lee sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=lee&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/lee.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/lee +image: http://mgaleg.maryland.gov/2020RS/images/lee.jpg other_identifiers: - identifier: MDL000316 scheme: legacy_openstates diff --git a/data/md/people/Susan-K-McComas-1cfdc0e8-7eed-411a-b931-cffa6479b51f.yml b/data/md/people/Susan-K-McComas-1cfdc0e8-7eed-411a-b931-cffa6479b51f.yml index 88ed9d01c0..e24ee8416d 100644 --- a/data/md/people/Susan-K-McComas-1cfdc0e8-7eed-411a-b931-cffa6479b51f.yml +++ b/data/md/people/Susan-K-McComas-1cfdc0e8-7eed-411a-b931-cffa6479b51f.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3272 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mccomas&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mccomas sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=mccomas&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/mccomas.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/mccomas +image: http://mgaleg.maryland.gov/2020RS/images/mccomas.jpg other_identifiers: - identifier: MDL000323 scheme: legacy_openstates diff --git a/data/md/people/Susan-W-Krebs-37857422-fcb6-4545-9bd2-f962d8c84288.yml b/data/md/people/Susan-W-Krebs-37857422-fcb6-4545-9bd2-f962d8c84288.yml index 611f29eda2..2170427e38 100644 --- a/data/md/people/Susan-W-Krebs-37857422-fcb6-4545-9bd2-f962d8c84288.yml +++ b/data/md/people/Susan-W-Krebs-37857422-fcb6-4545-9bd2-f962d8c84288.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3200 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=krebs&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/krebs sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=krebs&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/krebs.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/krebs +image: http://mgaleg.maryland.gov/2020RS/images/krebs.jpg other_identifiers: - identifier: MDL000312 scheme: legacy_openstates diff --git a/data/md/people/Susie-Proctor-04bcec29-909a-4d9a-8212-d1b2f24bf39d.yml b/data/md/people/Susie-Proctor-04bcec29-909a-4d9a-8212-d1b2f24bf39d.yml index 3a3f0899e3..b021e34808 100644 --- a/data/md/people/Susie-Proctor-04bcec29-909a-4d9a-8212-d1b2f24bf39d.yml +++ b/data/md/people/Susie-Proctor-04bcec29-909a-4d9a-8212-d1b2f24bf39d.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3083 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=proctor01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/proctor01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=proctor01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/proctor01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/proctor01 +image: http://mgaleg.maryland.gov/2020RS/images/proctor01.jpg other_identifiers: - identifier: MDL000722 scheme: legacy_openstates diff --git a/data/md/people/Talmadge-Branch-5038b5f5-d963-4269-8b17-9f513469797c.yml b/data/md/people/Talmadge-Branch-5038b5f5-d963-4269-8b17-9f513469797c.yml index 0ce41e19af..8fcc3d6f92 100644 --- a/data/md/people/Talmadge-Branch-5038b5f5-d963-4269-8b17-9f513469797c.yml +++ b/data/md/people/Talmadge-Branch-5038b5f5-d963-4269-8b17-9f513469797c.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3398 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=branch&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/branch sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=branch&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/branch.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/branch +image: http://mgaleg.maryland.gov/2020RS/images/branch.jpg other_identifiers: - identifier: MDL000252 scheme: legacy_openstates diff --git a/data/md/people/Teresa-E-Reilly-ad9925ab-ab4a-46e9-a316-4d3a964736a3.yml b/data/md/people/Teresa-E-Reilly-ad9925ab-ab4a-46e9-a316-4d3a964736a3.yml index b1da70bcd1..c29cb459eb 100644 --- a/data/md/people/Teresa-E-Reilly-ad9925ab-ab4a-46e9-a316-4d3a964736a3.yml +++ b/data/md/people/Teresa-E-Reilly-ad9925ab-ab4a-46e9-a316-4d3a964736a3.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3278 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reilly01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reilly01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=reilly01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/reilly01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/reilly01 +image: http://mgaleg.maryland.gov/2020RS/images/reilly01.jpg other_identifiers: - identifier: MDL000650 scheme: legacy_openstates diff --git a/data/md/people/Terri-L-Hill-9b63f31e-5bc0-47bf-a901-0a8dcc2a67b7.yml b/data/md/people/Terri-L-Hill-9b63f31e-5bc0-47bf-a901-0a8dcc2a67b7.yml index 18e843da81..c7042d47be 100644 --- a/data/md/people/Terri-L-Hill-9b63f31e-5bc0-47bf-a901-0a8dcc2a67b7.yml +++ b/data/md/people/Terri-L-Hill-9b63f31e-5bc0-47bf-a901-0a8dcc2a67b7.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3378 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hill02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hill02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hill02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hill02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hill02 +image: http://mgaleg.maryland.gov/2020RS/images/hill02.jpg other_identifiers: - identifier: MDL000647 scheme: legacy_openstates diff --git a/data/md/people/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml b/data/md/people/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml new file mode 100644 index 0000000000..67d0605699 --- /dev/null +++ b/data/md/people/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml @@ -0,0 +1,28 @@ +id: ocd-person/2e2c13b9-2674-4893-9de9-8e3591100ef1 +name: Thomas V. Mike Miller, Jr. +party: +- name: Democratic +roles: +- district: '27' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper +contact_details: +- address: State House, H-107;100 State Circle;Annapolis, MD 21401 + email: thomas.v.mike.miller@senate.state.md.us + fax: 410-841-3910 + note: Capitol Office + voice: 410-841-3700 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller%20t&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller%20t +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller%20t&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller%20t +image: http://mgaleg.maryland.gov/2020RS/images/miller t.jpg +other_identifiers: +- identifier: MDL000221 + scheme: legacy_openstates +- identifier: MDL000454 + scheme: legacy_openstates +given_name: Thomas +family_name: Miller diff --git a/data/md/people/Tony-Bridges-87b2e7c0-aa6e-49ca-99a0-ead8d114ed15.yml b/data/md/people/Tony-Bridges-87b2e7c0-aa6e-49ca-99a0-ead8d114ed15.yml index 79073af4e3..0bcf1d4b83 100644 --- a/data/md/people/Tony-Bridges-87b2e7c0-aa6e-49ca-99a0-ead8d114ed15.yml +++ b/data/md/people/Tony-Bridges-87b2e7c0-aa6e-49ca-99a0-ead8d114ed15.yml @@ -6,7 +6,6 @@ roles: - district: '41' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 315 House Office Building;6 Bleaden Street;Annapolis, MD 21401 email: tony.bridges@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3283 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bridges01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bridges01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=bridges01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/bridges01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/bridges01 +image: http://mgaleg.maryland.gov/2020RS/images/bridges01.jpg given_name: Tony family_name: Bridges diff --git a/data/md/people/Trent-Kittleman-05e3beb8-e31a-4046-8704-b287ea797146.yml b/data/md/people/Trent-Kittleman-05e3beb8-e31a-4046-8704-b287ea797146.yml index 781aa5ecb4..3334861213 100644 --- a/data/md/people/Trent-Kittleman-05e3beb8-e31a-4046-8704-b287ea797146.yml +++ b/data/md/people/Trent-Kittleman-05e3beb8-e31a-4046-8704-b287ea797146.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3556 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kittleman02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kittleman02 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=kittleman02&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/kittleman02.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/kittleman02 +image: http://mgaleg.maryland.gov/2020RS/images/kittleman02.jpg other_identifiers: - identifier: MDL000671 scheme: legacy_openstates diff --git a/data/md/people/Vanessa-E-Atterbeary-4d13bf0a-908c-4292-b5c9-411026ba2c17.yml b/data/md/people/Vanessa-E-Atterbeary-4d13bf0a-908c-4292-b5c9-411026ba2c17.yml index b35083c742..aac3f6adcd 100644 --- a/data/md/people/Vanessa-E-Atterbeary-4d13bf0a-908c-4292-b5c9-411026ba2c17.yml +++ b/data/md/people/Vanessa-E-Atterbeary-4d13bf0a-908c-4292-b5c9-411026ba2c17.yml @@ -13,9 +13,11 @@ contact_details: voice: 410-841-3471 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=atterbeary01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/atterbeary01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=atterbeary01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/atterbeary01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/atterbeary01 +image: http://mgaleg.maryland.gov/2020RS/images/atterbeary01.jpg other_identifiers: - identifier: MDL000620 scheme: legacy_openstates diff --git a/data/md/people/Vaughn-Stewart-5d11064b-6757-42f7-86fa-3023fefb6c10.yml b/data/md/people/Vaughn-Stewart-5d11064b-6757-42f7-86fa-3023fefb6c10.yml index 51e98b408d..b5603005c3 100644 --- a/data/md/people/Vaughn-Stewart-5d11064b-6757-42f7-86fa-3023fefb6c10.yml +++ b/data/md/people/Vaughn-Stewart-5d11064b-6757-42f7-86fa-3023fefb6c10.yml @@ -6,7 +6,6 @@ roles: - district: '19' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 220 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: vaughn.stewart@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3528 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=stewart01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/stewart01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=stewart01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/stewart01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/stewart01 +image: http://mgaleg.maryland.gov/2020RS/images/stewart01.jpg given_name: Vaughn family_name: Stewart diff --git a/data/md/people/Veronica-Turner-b982cab0-0d2e-46ae-8e22-51f68e7aac82.yml b/data/md/people/Veronica-Turner-b982cab0-0d2e-46ae-8e22-51f68e7aac82.yml index 5331526cba..fb4d9fc2ba 100644 --- a/data/md/people/Veronica-Turner-b982cab0-0d2e-46ae-8e22-51f68e7aac82.yml +++ b/data/md/people/Veronica-Turner-b982cab0-0d2e-46ae-8e22-51f68e7aac82.yml @@ -6,7 +6,6 @@ roles: - district: '26' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 205 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: veronica.turner@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3212 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=turner01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/turner01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=turner01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/turner01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/turner01 +image: http://mgaleg.maryland.gov/2020RS/images/turner01.jpg given_name: Veronica family_name: Turner diff --git a/data/md/people/Wanika-Fisher-54b2fd1f-3a2f-45d1-895b-587733b1a912.yml b/data/md/people/Wanika-Fisher-54b2fd1f-3a2f-45d1-895b-587733b1a912.yml index 78ca69979e..ec1c62824b 100644 --- a/data/md/people/Wanika-Fisher-54b2fd1f-3a2f-45d1-895b-587733b1a912.yml +++ b/data/md/people/Wanika-Fisher-54b2fd1f-3a2f-45d1-895b-587733b1a912.yml @@ -6,7 +6,6 @@ roles: - district: 47B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 206 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: wankika.fisher@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3340 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fisher01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fisher01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=fisher01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/fisher01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/fisher01 +image: http://mgaleg.maryland.gov/2020RS/images/fisher01.jpg given_name: Wanika family_name: Fisher diff --git a/data/md/people/Warren-E-Miller-7bc2cd0d-c213-4412-a193-5a6d575d67d5.yml b/data/md/people/Warren-E-Miller-7bc2cd0d-c213-4412-a193-5a6d575d67d5.yml index 1e38b78ab2..ca609b4dd9 100644 --- a/data/md/people/Warren-E-Miller-7bc2cd0d-c213-4412-a193-5a6d575d67d5.yml +++ b/data/md/people/Warren-E-Miller-7bc2cd0d-c213-4412-a193-5a6d575d67d5.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3582 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/miller.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller +image: http://mgaleg.maryland.gov/2020RS/images/miller.jpg other_identifiers: - identifier: MDL000328 scheme: legacy_openstates diff --git a/data/md/people/Wayne-A-Hartman-ed6c6e8e-a50c-4fce-86a8-0d9d7a75aa1f.yml b/data/md/people/Wayne-A-Hartman-ed6c6e8e-a50c-4fce-86a8-0d9d7a75aa1f.yml index 19b02557f8..0e6c975d39 100644 --- a/data/md/people/Wayne-A-Hartman-ed6c6e8e-a50c-4fce-86a8-0d9d7a75aa1f.yml +++ b/data/md/people/Wayne-A-Hartman-ed6c6e8e-a50c-4fce-86a8-0d9d7a75aa1f.yml @@ -6,7 +6,6 @@ roles: - district: 38C jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower - start_date: '2019-01-09' contact_details: - address: 308 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: wayne.hartman@house.state.md.us @@ -14,8 +13,10 @@ contact_details: voice: 410-841-3356 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hartman01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hartman01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hartman01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/hartman01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hartman01 +image: http://mgaleg.maryland.gov/2020RS/images/hartman01.jpg given_name: Wayne family_name: Hartman diff --git a/data/md/people/Wendell-R-Beitzel-f8542a24-7b8f-4732-b856-8f4979b74530.yml b/data/md/people/Wendell-R-Beitzel-f8542a24-7b8f-4732-b856-8f4979b74530.yml index 193a4f5207..8b8b5aa57c 100644 --- a/data/md/people/Wendell-R-Beitzel-f8542a24-7b8f-4732-b856-8f4979b74530.yml +++ b/data/md/people/Wendell-R-Beitzel-f8542a24-7b8f-4732-b856-8f4979b74530.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3435 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=beitzel&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/beitzel sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=beitzel&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/beitzel.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/beitzel +image: http://mgaleg.maryland.gov/2020RS/images/beitzel.jpg other_identifiers: - identifier: MDL000247 scheme: legacy_openstates diff --git a/data/md/people/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml b/data/md/people/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml new file mode 100644 index 0000000000..f4e4bf192e --- /dev/null +++ b/data/md/people/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml @@ -0,0 +1,32 @@ +id: ocd-person/6e1c09ac-57e7-4a54-bd83-74905670ad7f +name: William C. Smith, Jr. +party: +- name: Democratic +roles: +- district: '20' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper +contact_details: +- address: 2 East Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 + email: will.smith@senate.state.md.us + fax: 410-841-3166 + note: Capitol Office + voice: 410-841-3634 +links: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith02 +sources: +- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith02&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith02 +image: http://mgaleg.maryland.gov/2020RS/images/smith02.jpg +other_identifiers: +- identifier: MDL000623 + scheme: legacy_openstates +- identifier: MDL000707 + scheme: legacy_openstates +- identifier: MDL000727 + scheme: legacy_openstates +- identifier: ocd-person/57e76ce9-8c0e-47f1-8a92-ca19370eccc7 + scheme: openstates +given_name: William +family_name: Smith diff --git a/data/md/people/William-J-Wivell-7616b0d4-487f-4667-b92c-b09f628235d1.yml b/data/md/people/William-J-Wivell-7616b0d4-487f-4667-b92c-b09f628235d1.yml index f454d2a7b8..4328acdf93 100644 --- a/data/md/people/William-J-Wivell-7616b0d4-487f-4667-b92c-b09f628235d1.yml +++ b/data/md/people/William-J-Wivell-7616b0d4-487f-4667-b92c-b09f628235d1.yml @@ -14,9 +14,11 @@ contact_details: voice: 410-841-3447 links: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wivell01&stab=01 +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wivell01 sources: - url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=wivell01&stab=01 -image: http://mgaleg.maryland.gov/2019RS/images/wivell01.jpg +- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/wivell01 +image: http://mgaleg.maryland.gov/2020RS/images/wivell01.jpg other_identifiers: - identifier: MDL000719 scheme: legacy_openstates diff --git a/data/md/people/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml b/data/md/retired/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml similarity index 97% rename from data/md/people/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml rename to data/md/retired/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml index a6ab804a87..e112f7f376 100644 --- a/data/md/people/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml +++ b/data/md/retired/Bobby-A-Zirkin-c5bd7f19-2903-4371-838e-d06dbdafcc6f.yml @@ -6,6 +6,7 @@ roles: - district: '11' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper + end_date: '2020-01-01' contact_details: - address: 2 East Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: bobby.zirkin@senate.state.md.us diff --git a/data/md/people/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml b/data/md/retired/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml similarity index 97% rename from data/md/people/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml rename to data/md/retired/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml index cb71d362ca..b095c214b8 100644 --- a/data/md/people/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml +++ b/data/md/retired/Shirley-Nathan-Pulliam-1208a8a6-4b74-42c3-b422-2910ff3128db.yml @@ -6,6 +6,7 @@ roles: - district: '44' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: upper + end_date: '2019-12-01' contact_details: - address: 2 West Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 email: shirley.nathan.pulliam@senate.state.md.us diff --git a/data/md/people/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml b/data/md/retired/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml similarity index 97% rename from data/md/people/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml rename to data/md/retired/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml index 430ab3714d..04be695d4a 100644 --- a/data/md/people/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml +++ b/data/md/retired/Stephen-W-Lafferty-a61f9662-6988-4bef-ac5f-dd09814a9772.yml @@ -6,6 +6,7 @@ roles: - district: 42A jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-09-01' contact_details: - address: 305 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: stephen.lafferty@house.state.md.us From f8b359e4d0ee0e89d46c5d9f17ca97aee1a411e6 Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 27 Jul 2020 18:02:47 -0400 Subject: [PATCH 8/9] MD: fix validation issues --- ...r-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml | 28 ---------------- ...r-882548a3-099b-4763-9ec2-751ea362637b.yml | 25 --------------- ...I-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml | 31 ------------------ ...x-a7409a52-200a-4b76-b31b-8f6085e606dc.yml | 14 -------- ...r-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml | 28 ---------------- ...r-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml | 5 +++ ...r-5fff41d7-cea5-4e01-a4da-e4474d267691.yml | 27 ---------------- ...r-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml | 25 --------------- ...r-2271e390-772d-440c-9601-f72ed997092b.yml | 30 ----------------- ...r-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml | 28 ---------------- ...r-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml | 32 ------------------- ...s-13dcb368-f0b9-4c09-a94d-376bbb1f3eb7.yml | 1 + ...y-8df172d4-5e2c-408c-b1a5-f85550f0609c.yml | 1 + ...s-830c5d69-265e-4b78-bc7a-006a1365838f.yml | 1 + ...s-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml | 1 + ...s-4f2f533a-b089-4263-bcda-b585adf311b6.yml | 1 + ...n-fa93ab54-68fd-44a6-a278-21353cb9bc4f.yml | 1 + ...s-a8792461-f1fc-4ab6-bb82-c9b52a88ea4b.yml | 1 + ...y-95ad2cd7-e1e3-4e23-a403-1d396e190e4f.yml | 1 + ...l-bed7385c-306b-4698-808c-a2c82f23c3dd.yml | 1 + ...p-2ff24fe6-dd5d-4297-a587-287dc1beeda2.yml | 1 + ...s-d98df11d-30ff-46a6-aedc-12212414b53d.yml | 2 ++ ...y-0f64569d-0e0f-41f8-8ac9-7f2a24668348.yml | 2 ++ ...n-2c01de74-1604-4579-81b6-fbd70503bcf9.yml | 2 ++ ...t-537548b6-8de4-4670-af44-7fa929cbf3dc.yml | 1 + ...t-20c6eb5c-a259-48db-aae6-5ca780ed820c.yml | 1 + ...n-c4a3156f-96aa-4426-8614-0c93150ecc91.yml | 1 + ...y-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml | 1 + ...n-681b14d5-c05a-471b-b117-7d6b8718e847.yml | 1 + ...l-521b21c8-3816-4960-9e44-733bf1365968.yml | 1 + ...h-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml | 3 ++ ...s-8e517fc0-d50c-4d5b-84ad-35721838035a.yml | 1 + 32 files changed, 31 insertions(+), 268 deletions(-) delete mode 100644 data/md/legislature/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml delete mode 100644 data/md/legislature/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml delete mode 100644 data/md/legislature/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml delete mode 100644 data/md/legislature/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml delete mode 100644 data/md/legislature/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml delete mode 100644 data/md/legislature/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml delete mode 100644 data/md/legislature/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml delete mode 100644 data/md/legislature/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml delete mode 100644 data/md/legislature/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml delete mode 100644 data/md/legislature/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml rename data/md/{legislature => retired}/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml (96%) rename data/md/{legislature => retired}/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml (96%) rename data/md/{legislature => retired}/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml (97%) rename data/md/{legislature => retired}/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml (97%) rename data/md/{legislature => retired}/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml (92%) rename data/md/{legislature => retired}/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml (97%) diff --git a/data/md/legislature/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml b/data/md/legislature/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml deleted file mode 100644 index 271f08c9e7..0000000000 --- a/data/md/legislature/Alfred-C-Carr-Jr-65a3ac74-d1f1-4125-a17c-2905afcca8b0.yml +++ /dev/null @@ -1,28 +0,0 @@ -id: ocd-person/65a3ac74-d1f1-4125-a17c-2905afcca8b0 -name: Alfred C. Carr, Jr. -party: -- name: Democratic -roles: -- district: '18' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -contact_details: -- address: 222 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: alfred.carr@house.state.md.us - fax: 301-858-3053 - note: Capitol Office - voice: 410-841-3638 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carr&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carr -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=carr&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/carr -image: http://mgaleg.maryland.gov/2020RS/images/carr.jpg -other_identifiers: -- identifier: MDL000260 - scheme: legacy_openstates -- identifier: MDL000491 - scheme: legacy_openstates -given_name: Alfred -family_name: Carr diff --git a/data/md/legislature/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml b/data/md/legislature/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml deleted file mode 100644 index db73187369..0000000000 --- a/data/md/legislature/Carl-Anderton-Jr-882548a3-099b-4763-9ec2-751ea362637b.yml +++ /dev/null @@ -1,25 +0,0 @@ -id: ocd-person/882548a3-099b-4763-9ec2-751ea362637b -name: Carl Anderton, Jr. -party: -- name: Republican -roles: -- district: 38B - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -contact_details: -- address: 310 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: Carl.Anderton@house.state.md.us - note: Capitol Office - voice: 410-841-3431 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderton01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderton01 -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=anderton01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/anderton01 -image: http://mgaleg.maryland.gov/2020RS/images/anderton01.jpg -other_identifiers: -- identifier: MDL000684 - scheme: legacy_openstates -given_name: Carl -family_name: Anderton diff --git a/data/md/legislature/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml b/data/md/legislature/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml deleted file mode 100644 index c765becaf2..0000000000 --- a/data/md/legislature/Charles-E-Sydnor-III-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml +++ /dev/null @@ -1,31 +0,0 @@ -id: ocd-person/a111b899-ab75-4934-a6e9-a9c8be9bc70d -name: Charles E. Sydnor, III -party: -- name: Democratic -roles: -- district: 44B - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower - end_date: 2019-12-30 -- district: '44' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: upper - start_date: 2019-12-30 -contact_details: -- address: 306 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: Charles.Sydnor@house.state.md.us - fax: 410-841-3537 - note: Capitol Office - voice: 410-841-3802 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sydnor01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sydnor02 -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=sydnor01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/sydnor02 -image: http://mgaleg.maryland.gov/2020RS/images/sydnor02.jpg -other_identifiers: -- identifier: MDL000652 - scheme: legacy_openstates -given_name: Charles -family_name: Sydnor diff --git a/data/md/legislature/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml b/data/md/legislature/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml deleted file mode 100644 index 90c8af5000..0000000000 --- a/data/md/legislature/Daniel-L-Cox-a7409a52-200a-4b76-b31b-8f6085e606dc.yml +++ /dev/null @@ -1,14 +0,0 @@ -id: ocd-person/a7409a52-200a-4b76-b31b-8f6085e606dc -name: Daniel L. Cox -party: -- name: Republican -roles: -- district: '4' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -links: -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cox01 -sources: -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/cox01 -image: http://mgaleg.maryland.gov/2020RS/images/cox01.jpg -contact_details: [] diff --git a/data/md/legislature/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml b/data/md/legislature/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml deleted file mode 100644 index d7c93ce6bf..0000000000 --- a/data/md/legislature/Frank-M-Conaway-Jr-a07dd6a0-012b-41a7-901d-754d1cd194bb.yml +++ /dev/null @@ -1,28 +0,0 @@ -id: ocd-person/a07dd6a0-012b-41a7-901d-754d1cd194bb -name: Frank M. Conaway, Jr. -party: -- name: Democratic -roles: -- district: '40' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -contact_details: -- address: 314 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: frank.conaway@house.state.md.us - fax: 410-841-3079 - note: Capitol Office - voice: 410-841-3189 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=conaway&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/conaway -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=conaway&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/conaway -image: http://mgaleg.maryland.gov/2020RS/images/conaway.jpg -other_identifiers: -- identifier: MDL000264 - scheme: legacy_openstates -- identifier: MDL000496 - scheme: legacy_openstates -given_name: Frank -family_name: Conaway diff --git a/data/md/legislature/III-Charles-E-Sydnor-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml b/data/md/legislature/III-Charles-E-Sydnor-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml index 00ef8fc7c7..d707ea514e 100644 --- a/data/md/legislature/III-Charles-E-Sydnor-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml +++ b/data/md/legislature/III-Charles-E-Sydnor-a111b899-ab75-4934-a6e9-a9c8be9bc70d.yml @@ -6,6 +6,11 @@ roles: - district: 44B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: 2019-01-08 +- district: '44' + jurisdiction: ocd-jurisdiction/country:us/state:md/government + type: upper + start_date: 2019-01-08 contact_details: - address: 306 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: Charles.Sydnor@house.state.md.us diff --git a/data/md/legislature/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml b/data/md/legislature/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml deleted file mode 100644 index 37583ae6c4..0000000000 --- a/data/md/legislature/Marvin-E-Holmes-Jr-5fff41d7-cea5-4e01-a4da-e4474d267691.yml +++ /dev/null @@ -1,27 +0,0 @@ -id: ocd-person/5fff41d7-cea5-4e01-a4da-e4474d267691 -name: Marvin E. Holmes, Jr. -party: -- name: Democratic -roles: -- district: 23B - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -contact_details: -- address: 364 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: marvin.holmes@house.state.md.us - note: Capitol Office - voice: 410-841-3310 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=holmes&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/holmes -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=holmes&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/holmes -image: http://mgaleg.maryland.gov/2020RS/images/holmes.jpg -other_identifiers: -- identifier: MDL000294 - scheme: legacy_openstates -- identifier: MDL000528 - scheme: legacy_openstates -given_name: Marvin -family_name: Holmes diff --git a/data/md/legislature/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml b/data/md/legislature/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml deleted file mode 100644 index 38351cfb3f..0000000000 --- a/data/md/legislature/Robin-L-Grammer-Jr-84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a.yml +++ /dev/null @@ -1,25 +0,0 @@ -id: ocd-person/84c7f5dc-7dfc-4a3b-9a85-7c7732515f0a -name: Robin L. Grammer, Jr. -party: -- name: Republican -roles: -- district: '6' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: lower -contact_details: -- address: 307 House Office Building;6 Bladen Street;Annapolis, MD 21401 - email: Robin.Grammer@house.state.md.us - note: Capitol Office - voice: 410-841-3298 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=grammer01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/grammer01 -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=grammer01&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/grammer01 -image: http://mgaleg.maryland.gov/2020RS/images/grammer01.jpg -other_identifiers: -- identifier: MDL000681 - scheme: legacy_openstates -given_name: Robin -family_name: Grammer diff --git a/data/md/legislature/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml b/data/md/legislature/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml deleted file mode 100644 index 5c9b08164e..0000000000 --- a/data/md/legislature/Stephen-S-Hershey-Jr-2271e390-772d-440c-9601-f72ed997092b.yml +++ /dev/null @@ -1,30 +0,0 @@ -id: ocd-person/2271e390-772d-440c-9601-f72ed997092b -name: Stephen S. Hershey, Jr. -party: -- name: Republican -roles: -- district: '36' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: upper -contact_details: -- address: 420 James Senate Office Building;11 Bladen Street;Annapolis, MD 21401 - email: steve.hershey@senate.state.md.us - fax: 410-841-3762 - note: Capitol Office - voice: 410-841-3639 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hershey&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hershey -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=hershey&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/hershey -image: http://mgaleg.maryland.gov/2020RS/images/hershey.jpg -other_identifiers: -- identifier: MDL000396 - scheme: legacy_openstates -- identifier: MDL000525 - scheme: legacy_openstates -- identifier: MDL000616 - scheme: legacy_openstates -given_name: Stephen -family_name: Hershey diff --git a/data/md/legislature/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml b/data/md/legislature/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml deleted file mode 100644 index 67d0605699..0000000000 --- a/data/md/legislature/Thomas-V-Mike-Miller-Jr-2e2c13b9-2674-4893-9de9-8e3591100ef1.yml +++ /dev/null @@ -1,28 +0,0 @@ -id: ocd-person/2e2c13b9-2674-4893-9de9-8e3591100ef1 -name: Thomas V. Mike Miller, Jr. -party: -- name: Democratic -roles: -- district: '27' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: upper -contact_details: -- address: State House, H-107;100 State Circle;Annapolis, MD 21401 - email: thomas.v.mike.miller@senate.state.md.us - fax: 410-841-3910 - note: Capitol Office - voice: 410-841-3700 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller%20t&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller%20t -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=miller%20t&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/miller%20t -image: http://mgaleg.maryland.gov/2020RS/images/miller t.jpg -other_identifiers: -- identifier: MDL000221 - scheme: legacy_openstates -- identifier: MDL000454 - scheme: legacy_openstates -given_name: Thomas -family_name: Miller diff --git a/data/md/legislature/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml b/data/md/legislature/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml deleted file mode 100644 index f4e4bf192e..0000000000 --- a/data/md/legislature/William-C-Smith-Jr-6e1c09ac-57e7-4a54-bd83-74905670ad7f.yml +++ /dev/null @@ -1,32 +0,0 @@ -id: ocd-person/6e1c09ac-57e7-4a54-bd83-74905670ad7f -name: William C. Smith, Jr. -party: -- name: Democratic -roles: -- district: '20' - jurisdiction: ocd-jurisdiction/country:us/state:md/government - type: upper -contact_details: -- address: 2 East Miller Senate Office Building;11 Bladen Street;Annapolis, MD 21401 - email: will.smith@senate.state.md.us - fax: 410-841-3166 - note: Capitol Office - voice: 410-841-3634 -links: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith02&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith02 -sources: -- url: http://mgaleg.maryland.gov/webmga/frmMain.aspx?pid=sponpage&tab=subject6&id=smith02&stab=01 -- url: http://mgaleg.maryland.gov/mgawebsite/Members/Details/smith02 -image: http://mgaleg.maryland.gov/2020RS/images/smith02.jpg -other_identifiers: -- identifier: MDL000623 - scheme: legacy_openstates -- identifier: MDL000707 - scheme: legacy_openstates -- identifier: MDL000727 - scheme: legacy_openstates -- identifier: ocd-person/57e76ce9-8c0e-47f1-8a92-ca19370eccc7 - scheme: openstates -given_name: William -family_name: Smith diff --git a/data/md/organizations/Appropriations-13dcb368-f0b9-4c09-a94d-376bbb1f3eb7.yml b/data/md/organizations/Appropriations-13dcb368-f0b9-4c09-a94d-376bbb1f3eb7.yml index b016019f18..9434181f44 100644 --- a/data/md/organizations/Appropriations-13dcb368-f0b9-4c09-a94d-376bbb1f3eb7.yml +++ b/data/md/organizations/Appropriations-13dcb368-f0b9-4c09-a94d-376bbb1f3eb7.yml @@ -13,6 +13,7 @@ memberships: - id: ocd-person/8e517fc0-d50c-4d5b-84ad-35721838035a name: Tawanna P. Gaines role: vice chair + end_date: '2019-10-04' - id: ocd-person/0e4cb257-11b9-4772-b323-624ef28fb8b6 name: Ben Barnes - id: ocd-person/f8542a24-7b8f-4732-b856-8f4979b74530 diff --git a/data/md/organizations/Baltimore-City-8df172d4-5e2c-408c-b1a5-f85550f0609c.yml b/data/md/organizations/Baltimore-City-8df172d4-5e2c-408c-b1a5-f85550f0609c.yml index c11a30792e..8d84a324db 100644 --- a/data/md/organizations/Baltimore-City-8df172d4-5e2c-408c-b1a5-f85550f0609c.yml +++ b/data/md/organizations/Baltimore-City-8df172d4-5e2c-408c-b1a5-f85550f0609c.yml @@ -10,3 +10,4 @@ memberships: - id: ocd-person/681b14d5-c05a-471b-b117-7d6b8718e847 name: Cheryl D. Glenn role: chair + end_date: '2019-12-18' diff --git a/data/md/organizations/Behavioral-Health-and-Opioid-Use-Disorders-830c5d69-265e-4b78-bc7a-006a1365838f.yml b/data/md/organizations/Behavioral-Health-and-Opioid-Use-Disorders-830c5d69-265e-4b78-bc7a-006a1365838f.yml index e382d36a44..09d2ef4262 100644 --- a/data/md/organizations/Behavioral-Health-and-Opioid-Use-Disorders-830c5d69-265e-4b78-bc7a-006a1365838f.yml +++ b/data/md/organizations/Behavioral-Health-and-Opioid-Use-Disorders-830c5d69-265e-4b78-bc7a-006a1365838f.yml @@ -13,6 +13,7 @@ memberships: - id: ocd-person/521b21c8-3816-4960-9e44-733bf1365968 name: Eric M. Bromwell role: house chair + end_date: '2019-09-01' - id: ocd-person/f16532d1-f3b4-4b25-850d-efeadce1e850 name: Thomas M. Middleton end_date: '2019-01-08' diff --git a/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml b/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml index 5b1f08fcad..292fad7a32 100644 --- a/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml +++ b/data/md/organizations/Children-Youth-and-Families-5b1c36e5-d315-4c36-8d80-586ee8e25030.yml @@ -39,6 +39,7 @@ memberships: name: Eric Ebersole - id: ocd-person/8e517fc0-d50c-4d5b-84ad-35721838035a name: Tawanna P. Gaines + end_date: '2019-10-04' - id: ocd-person/306bd39a-93ec-4db1-bdbd-c1fe9da4f8b5 name: Ana Sol Gutierrez end_date: '2019-01-08' diff --git a/data/md/organizations/Economic-Matters-4f2f533a-b089-4263-bcda-b585adf311b6.yml b/data/md/organizations/Economic-Matters-4f2f533a-b089-4263-bcda-b585adf311b6.yml index 5a69361e85..7ca4aa43df 100644 --- a/data/md/organizations/Economic-Matters-4f2f533a-b089-4263-bcda-b585adf311b6.yml +++ b/data/md/organizations/Economic-Matters-4f2f533a-b089-4263-bcda-b585adf311b6.yml @@ -41,6 +41,7 @@ memberships: end_date: '2019-01-08' - id: ocd-person/681b14d5-c05a-471b-b117-7d6b8718e847 name: Cheryl D. Glenn + end_date: '2019-12-18' - id: ocd-person/32a0f09e-394f-446c-93c7-9cff2ea28b83 name: Seth A. Howard - id: ocd-person/544e1b98-6819-43dd-8033-2a19cb6ac1f8 diff --git a/data/md/organizations/Environment-and-Transportation-fa93ab54-68fd-44a6-a278-21353cb9bc4f.yml b/data/md/organizations/Environment-and-Transportation-fa93ab54-68fd-44a6-a278-21353cb9bc4f.yml index 4d99726e27..e6e194dfce 100644 --- a/data/md/organizations/Environment-and-Transportation-fa93ab54-68fd-44a6-a278-21353cb9bc4f.yml +++ b/data/md/organizations/Environment-and-Transportation-fa93ab54-68fd-44a6-a278-21353cb9bc4f.yml @@ -19,6 +19,7 @@ memberships: - name: Carr, Alfred C., Jr. - id: ocd-person/94ddfbc5-a635-4257-8fb6-ba34b825f0b1 name: Andrew Cassilly + end_date: '2019-12-01' - id: ocd-person/391fd87a-c569-4db7-b386-b20ccc714dd8 name: Jerry Clark - id: ocd-person/5601321a-3fae-4a65-8582-e45dcd704643 diff --git a/data/md/organizations/Health-and-Government-Operations-a8792461-f1fc-4ab6-bb82-c9b52a88ea4b.yml b/data/md/organizations/Health-and-Government-Operations-a8792461-f1fc-4ab6-bb82-c9b52a88ea4b.yml index e2c2a21021..b3401aaf20 100644 --- a/data/md/organizations/Health-and-Government-Operations-a8792461-f1fc-4ab6-bb82-c9b52a88ea4b.yml +++ b/data/md/organizations/Health-and-Government-Operations-a8792461-f1fc-4ab6-bb82-c9b52a88ea4b.yml @@ -13,6 +13,7 @@ memberships: - id: ocd-person/521b21c8-3816-4960-9e44-733bf1365968 name: Eric M. Bromwell role: vice chair + end_date: '2019-09-01' - id: ocd-person/9df7c01f-9128-4aca-b2ec-883b38750ccf name: Angela Angel end_date: '2019-01-08' diff --git a/data/md/organizations/Legislative-Policy-95ad2cd7-e1e3-4e23-a403-1d396e190e4f.yml b/data/md/organizations/Legislative-Policy-95ad2cd7-e1e3-4e23-a403-1d396e190e4f.yml index 9ea8e548e3..3b023f4d35 100644 --- a/data/md/organizations/Legislative-Policy-95ad2cd7-e1e3-4e23-a403-1d396e190e4f.yml +++ b/data/md/organizations/Legislative-Policy-95ad2cd7-e1e3-4e23-a403-1d396e190e4f.yml @@ -12,6 +12,7 @@ memberships: - id: ocd-person/90fd0012-8b67-4d58-ab1e-ac2c2212f7d6 name: Michael E. Busch role: house chair + end_date: '2019-04-07' - id: ocd-person/b79b8694-ec99-467a-b9cc-5aff5f90524e name: John C. Astle end_date: '2019-01-08' diff --git a/data/md/organizations/Protocol-bed7385c-306b-4698-808c-a2c82f23c3dd.yml b/data/md/organizations/Protocol-bed7385c-306b-4698-808c-a2c82f23c3dd.yml index fd90240e58..92bb4d54bb 100644 --- a/data/md/organizations/Protocol-bed7385c-306b-4698-808c-a2c82f23c3dd.yml +++ b/data/md/organizations/Protocol-bed7385c-306b-4698-808c-a2c82f23c3dd.yml @@ -23,5 +23,6 @@ memberships: - name: DeGrange, James E., Sr. - id: ocd-person/681b14d5-c05a-471b-b117-7d6b8718e847 name: Cheryl D. Glenn + end_date: '2019-12-18' - id: ocd-person/1a43a7cb-acbf-4974-8fe8-315cb674b27d name: Charles J. Otto diff --git a/data/md/organizations/Regional-Revitalization-Work-Group-2ff24fe6-dd5d-4297-a587-287dc1beeda2.yml b/data/md/organizations/Regional-Revitalization-Work-Group-2ff24fe6-dd5d-4297-a587-287dc1beeda2.yml index 92cfb29cab..027781128a 100644 --- a/data/md/organizations/Regional-Revitalization-Work-Group-2ff24fe6-dd5d-4297-a587-287dc1beeda2.yml +++ b/data/md/organizations/Regional-Revitalization-Work-Group-2ff24fe6-dd5d-4297-a587-287dc1beeda2.yml @@ -14,6 +14,7 @@ memberships: name: Ned Carey - id: ocd-person/94ddfbc5-a635-4257-8fb6-ba34b825f0b1 name: Andrew Cassilly + end_date: '2019-12-01' - id: ocd-person/5601321a-3fae-4a65-8582-e45dcd704643 name: Robert L. Flanagan end_date: '2019-01-08' diff --git a/data/md/organizations/Rules-and-Executive-Nominations-d98df11d-30ff-46a6-aedc-12212414b53d.yml b/data/md/organizations/Rules-and-Executive-Nominations-d98df11d-30ff-46a6-aedc-12212414b53d.yml index a77339269b..cb7d75dd22 100644 --- a/data/md/organizations/Rules-and-Executive-Nominations-d98df11d-30ff-46a6-aedc-12212414b53d.yml +++ b/data/md/organizations/Rules-and-Executive-Nominations-d98df11d-30ff-46a6-aedc-12212414b53d.yml @@ -22,6 +22,7 @@ memberships: name: Talmadge Branch - id: ocd-person/521b21c8-3816-4960-9e44-733bf1365968 name: Eric M. Bromwell + end_date: '2019-09-01' - id: ocd-person/cd87b04a-34d3-4d81-aaf0-7e15a1df624a name: Dereck E. Davis - id: ocd-person/1bfdc88d-62d4-4e89-9f60-ba4709a221be @@ -31,6 +32,7 @@ memberships: end_date: '2019-01-08' - id: ocd-person/8e517fc0-d50c-4d5b-84ad-35721838035a name: Tawanna P. Gaines + end_date: '2019-10-04' - id: ocd-person/a8bbc7e6-f96a-4c4a-98d7-e0bb4e81331f name: Sheila E. Hixson end_date: '2019-01-08' diff --git a/data/md/organizations/Spending-Affordability-0f64569d-0e0f-41f8-8ac9-7f2a24668348.yml b/data/md/organizations/Spending-Affordability-0f64569d-0e0f-41f8-8ac9-7f2a24668348.yml index 6fa88fdfd0..09bd432def 100644 --- a/data/md/organizations/Spending-Affordability-0f64569d-0e0f-41f8-8ac9-7f2a24668348.yml +++ b/data/md/organizations/Spending-Affordability-0f64569d-0e0f-41f8-8ac9-7f2a24668348.yml @@ -38,11 +38,13 @@ memberships: name: Wendell R. Beitzel - id: ocd-person/90fd0012-8b67-4d58-ab1e-ac2c2212f7d6 name: Michael E. Busch + end_date: '2019-04-07' - id: ocd-person/6db0ae48-9a12-4f21-9967-39bab711e147 name: C. William Frick end_date: '2019-01-08' - id: ocd-person/8e517fc0-d50c-4d5b-84ad-35721838035a name: Tawanna P. Gaines + end_date: '2019-10-04' - id: ocd-person/a8bbc7e6-f96a-4c4a-98d7-e0bb4e81331f name: Sheila E. Hixson end_date: '2019-01-08' diff --git a/data/md/organizations/Subcommittee-on-Program-Open-SpaceAgricultural-Land-Preservation-2c01de74-1604-4579-81b6-fbd70503bcf9.yml b/data/md/organizations/Subcommittee-on-Program-Open-SpaceAgricultural-Land-Preservation-2c01de74-1604-4579-81b6-fbd70503bcf9.yml index 89d2965721..bcdd72b0ac 100644 --- a/data/md/organizations/Subcommittee-on-Program-Open-SpaceAgricultural-Land-Preservation-2c01de74-1604-4579-81b6-fbd70503bcf9.yml +++ b/data/md/organizations/Subcommittee-on-Program-Open-SpaceAgricultural-Land-Preservation-2c01de74-1604-4579-81b6-fbd70503bcf9.yml @@ -23,8 +23,10 @@ memberships: end_date: '2019-01-08' - id: ocd-person/94ddfbc5-a635-4257-8fb6-ba34b825f0b1 name: Andrew Cassilly + end_date: '2019-12-01' - id: ocd-person/8e517fc0-d50c-4d5b-84ad-35721838035a name: Tawanna P. Gaines + end_date: '2019-10-04' - id: ocd-person/9d616808-b2b6-416c-8247-94e2d2c589c4 name: Shane Robinson end_date: '2019-01-08' diff --git a/data/md/organizations/Unemployment-Insurance-Oversight-537548b6-8de4-4670-af44-7fa929cbf3dc.yml b/data/md/organizations/Unemployment-Insurance-Oversight-537548b6-8de4-4670-af44-7fa929cbf3dc.yml index bc9cd78f8d..6d47348fc1 100644 --- a/data/md/organizations/Unemployment-Insurance-Oversight-537548b6-8de4-4670-af44-7fa929cbf3dc.yml +++ b/data/md/organizations/Unemployment-Insurance-Oversight-537548b6-8de4-4670-af44-7fa929cbf3dc.yml @@ -14,6 +14,7 @@ memberships: - id: ocd-person/681b14d5-c05a-471b-b117-7d6b8718e847 name: Cheryl D. Glenn role: house chair + end_date: '2019-12-18' - id: ocd-person/a5a952f8-f001-4619-9056-103a1f4e4d8e name: Joanne C. Benson - name: Hershey, Stephen S., Jr. diff --git a/data/md/organizations/Workers-Compensation-Benefit-and-Insurance-Oversight-20c6eb5c-a259-48db-aae6-5ca780ed820c.yml b/data/md/organizations/Workers-Compensation-Benefit-and-Insurance-Oversight-20c6eb5c-a259-48db-aae6-5ca780ed820c.yml index 686e859a80..2ae277caea 100644 --- a/data/md/organizations/Workers-Compensation-Benefit-and-Insurance-Oversight-20c6eb5c-a259-48db-aae6-5ca780ed820c.yml +++ b/data/md/organizations/Workers-Compensation-Benefit-and-Insurance-Oversight-20c6eb5c-a259-48db-aae6-5ca780ed820c.yml @@ -17,3 +17,4 @@ memberships: name: Brian J. Feldman - id: ocd-person/681b14d5-c05a-471b-b117-7d6b8718e847 name: Cheryl D. Glenn + end_date: '2019-12-18' diff --git a/data/md/legislature/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml b/data/md/retired/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml similarity index 96% rename from data/md/legislature/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml rename to data/md/retired/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml index 19e40cd6a0..2712444644 100644 --- a/data/md/legislature/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml +++ b/data/md/retired/Alice-Cain-c4a3156f-96aa-4426-8614-0c93150ecc91.yml @@ -7,6 +7,7 @@ roles: jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower start_date: '2019-01-09' + end_date: '2020-03-19' contact_details: - address: 154 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: alice.cain@house.state.md.us diff --git a/data/md/legislature/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml b/data/md/retired/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml similarity index 96% rename from data/md/legislature/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml rename to data/md/retired/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml index 109933aa57..35803a47a4 100644 --- a/data/md/legislature/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml +++ b/data/md/retired/Andrew-Cassilly-94ddfbc5-a635-4257-8fb6-ba34b825f0b1.yml @@ -6,6 +6,7 @@ roles: - district: 35B jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-12-01' contact_details: - address: 414 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: Andrew.Cassilly@house.state.md.us diff --git a/data/md/legislature/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml b/data/md/retired/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml similarity index 97% rename from data/md/legislature/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml rename to data/md/retired/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml index d622350cf6..9b85b632d9 100644 --- a/data/md/legislature/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml +++ b/data/md/retired/Cheryl-D-Glenn-681b14d5-c05a-471b-b117-7d6b8718e847.yml @@ -6,6 +6,7 @@ roles: - district: '45' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-12-18' contact_details: - address: 301 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: cheryl.glenn@house.state.md.us diff --git a/data/md/legislature/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml b/data/md/retired/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml similarity index 97% rename from data/md/legislature/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml rename to data/md/retired/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml index 40cf08ce00..44f88ced24 100644 --- a/data/md/legislature/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml +++ b/data/md/retired/Eric-M-Bromwell-521b21c8-3816-4960-9e44-733bf1365968.yml @@ -6,6 +6,7 @@ roles: - district: '8' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-09-01' contact_details: - address: 231 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: eric.bromwell@house.state.md.us diff --git a/data/md/legislature/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml b/data/md/retired/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml similarity index 92% rename from data/md/legislature/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml rename to data/md/retired/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml index 5345e2a8aa..5bb269bcc6 100644 --- a/data/md/legislature/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml +++ b/data/md/retired/Michael-E-Busch-90fd0012-8b67-4d58-ab1e-ac2c2212f7d6.yml @@ -6,6 +6,8 @@ roles: - district: 30A jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-04-07' + end_reason: Deceased contact_details: - address: H-101 State House;State Circle;Annapolis, MD 21401 email: michael.busch@house.state.md.us @@ -26,3 +28,4 @@ other_identifiers: scheme: legacy_openstates given_name: Michael family_name: Busch +death_date: '2019-04-07' diff --git a/data/md/legislature/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml b/data/md/retired/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml similarity index 97% rename from data/md/legislature/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml rename to data/md/retired/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml index 10d7abb32d..6817b8b8c8 100644 --- a/data/md/legislature/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml +++ b/data/md/retired/Tawanna-P-Gaines-8e517fc0-d50c-4d5b-84ad-35721838035a.yml @@ -6,6 +6,7 @@ roles: - district: '22' jurisdiction: ocd-jurisdiction/country:us/state:md/government type: lower + end_date: '2019-10-04' contact_details: - address: 120 House Office Building;6 Bladen Street;Annapolis, MD 21401 email: tawanna.gaines@house.state.md.us From d90f95021d92c1d4bf579896db017574e9a94427 Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 27 Jul 2020 18:02:54 -0400 Subject: [PATCH 9/9] fix retirement move --- scripts/retire.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/retire.py b/scripts/retire.py index 671de69dbf..4f5f5cb948 100755 --- a/scripts/retire.py +++ b/scripts/retire.py @@ -31,8 +31,9 @@ def retire_person(person, end_date, reason=None, death=False): def move_file(filename): # pragma: no cover - new_filename = filename.replace("/legislature/", "/retired/") - new_filename = filename.replace("/municipalities/", "/retired/") + new_filename = filename.replace("/legislature/", "/retired/").replace( + "/municipalities/", "/retired/" + ) click.secho(f"moved from {filename} to {new_filename}") os.renames(filename, new_filename)