APIs#

Was ist eine API?#

Eine API (Application Programming Interface) ist eine Schnittstelle, die es Software-Programmen ermöglicht, miteinander zu kommunizieren und Daten auszutauschen. Sie stellt eine spezifizierte Menge von Funktionen und Protokollen bereit, die von anderen Programmen genutzt werden können, um zum Beispiel auf bestimmte Daten zuzugreifen oder bestimmte Funktionen auszuführen.

Ein einfaches Beispiel für die Nutzung einer API ist die Integration von Wetterdaten in eine App. Die App nutzt dabei die Funktionen und Protokolle der Wetter-API, um aktuelle Wetterdaten von einer Wetter-Website abzurufen und in der App anzuzeigen.

API

Teil I - OpenNotify API#

Unser erster API Request in Python#

Wir testen die Open Notify API die anzeigt wie viele Menschen gerade im All sind.

Dafür benutzen wir das requests python package.

Dokumentation: https://requests.readthedocs.io/en/latest/

!pip install requests
Requirement already satisfied: requests in /home/natalie/Dokumente/Datenjournalismus in Python/Code/.venv/lib/python3.11/site-packages (2.31.0)
Requirement already satisfied: charset-normalizer<4,>=2 in /home/natalie/Dokumente/Datenjournalismus in Python/Code/.venv/lib/python3.11/site-packages (from requests) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in /home/natalie/Dokumente/Datenjournalismus in Python/Code/.venv/lib/python3.11/site-packages (from requests) (3.6)
Requirement already satisfied: urllib3<3,>=1.21.1 in /home/natalie/Dokumente/Datenjournalismus in Python/Code/.venv/lib/python3.11/site-packages (from requests) (2.1.0)
Requirement already satisfied: certifi>=2017.4.17 in /home/natalie/Dokumente/Datenjournalismus in Python/Code/.venv/lib/python3.11/site-packages (from requests) (2023.11.17)
import requests

Um Daten einer API abzufragen verwendet man einen sogenannten GET request. Dafür hat das request package die Funktion requests.get(). Diese nimmt als Argument die url entgegen.

url = 'http://api.open-notify.org/astros.json'
response = requests.get(url)
response
<Response [200]>
dir(response)
['__attrs__',
 '__bool__',
 '__class__',
 '__delattr__',
 '__dict__',
 '__dir__',
 '__doc__',
 '__enter__',
 '__eq__',
 '__exit__',
 '__format__',
 '__ge__',
 '__getattribute__',
 '__getstate__',
 '__gt__',
 '__hash__',
 '__init__',
 '__init_subclass__',
 '__iter__',
 '__le__',
 '__lt__',
 '__module__',
 '__ne__',
 '__new__',
 '__nonzero__',
 '__reduce__',
 '__reduce_ex__',
 '__repr__',
 '__setattr__',
 '__setstate__',
 '__sizeof__',
 '__str__',
 '__subclasshook__',
 '__weakref__',
 '_content',
 '_content_consumed',
 '_next',
 'apparent_encoding',
 'close',
 'connection',
 'content',
 'cookies',
 'elapsed',
 'encoding',
 'headers',
 'history',
 'is_permanent_redirect',
 'is_redirect',
 'iter_content',
 'iter_lines',
 'json',
 'links',
 'next',
 'ok',
 'raise_for_status',
 'raw',
 'reason',
 'request',
 'status_code',
 'text',
 'url']

Status Codes#

Die Antwort eines request, enthält einen response Code der sagt ob die Anfrage erfolgreich war.

Der Status Code wird über .status_code abgerufen.

response.status_code
200

Die häufigsten HTTP-API-Statuscodes#

  • 200 OK: Der Server hat die Anfrage erfolgreich verarbeitet und die gewünschte Ressource zurückgegeben.

  • 301 Moved Permanently: Die angeforderte Ressource wurde permanent an eine andere URL umgeleitet.

  • 400 Bad Request: Die Anfrage konnte aufgrund eines Syntaxfehlers oder ungültiger Anfrageparameter nicht verarbeitet werden.

  • 401 Unauthorized: Der Server konnte die Anfrage nicht authentifizieren und fordert daher eine gültige Anmeldung.

  • 403 Access Forbidden: Die Zugansdaten sind für die Abfrage nicht ausreichend.

  • 404 Not Found: Die angeforderte Ressource wurde vom Server nicht gefunden.

  • 500 Internal Server Error: Der Server hat einen internen Fehler und kann die Anfrage nicht verarbeiten.

API Data#

Die Daten der API können über .json() abgerufen werden.

data = response.json()
data
{'message': 'success',
 'people': [{'name': 'Jasmin Moghbeli', 'craft': 'ISS'},
  {'name': 'Andreas Mogensen', 'craft': 'ISS'},
  {'name': 'Satoshi Furukawa', 'craft': 'ISS'},
  {'name': 'Konstantin Borisov', 'craft': 'ISS'},
  {'name': 'Oleg Kononenko', 'craft': 'ISS'},
  {'name': 'Nikolai Chub', 'craft': 'ISS'},
  {'name': "Loral O'Hara", 'craft': 'ISS'}],
 'number': 7}
type(data)
dict

Welche Daten sind verfügbar?#

Zeige alle Keys im Dictionary an.

data.keys()
dict_keys(['message', 'people', 'number'])

Zeige die Anzahl an Menschen an, die gerade im All ist

len(data['people'])
7
data['number']
7

Drucke die Namen aller Menschen im All aus

for astronaut in data['people']:
    print(astronaut['name'])
Jasmin Moghbeli
Andreas Mogensen
Satoshi Furukawa
Konstantin Borisov
Oleg Kononenko
Nikolai Chub
Loral O'Hara

Teil II - Abgeordnetenwatch API#

Abgeordnetenwatch#

Das Ziel

Unsere Vision ist eine selbstbestimmte Gesellschaft. Diese befördern wir durch mehr Beteiligungsmöglichkeiten und Transparenz in der Politik.

Was wir wollen:

  • eine öffentliche Form des Austausches zwischen Bürger:innen und der Politik bieten

  • höheren Rechenschaftsdruck der Politiker gegenüber den Wähler:innen herbeiführen

  • Parlamente und Abgeordnete stärker in den Fokus der Öffentlichkeit rücken

  • umfangreichere und vollständigere Berichterstattung über Politik ermöglichen

  • Medienberichte leichter hinterfragbar machen

  • einfachen und direkten Zugang zu politischen Informationen, mehr Transparenz

  • eine dauerhafte Beteiligungsmöglichkeit für Wähler:innen schaffen

API Dokumentation

https://www.abgeordnetenwatch.de/api

import requests
url = 'https://www.abgeordnetenwatch.de/api/v2/politicians'
response = requests.get(url)

Die API Antwort verstehen und deuten#

response.status_code
200
result = response.json()
result
{'meta': {'abgeordnetenwatch_api': {'version': '2.7',
   'changelog': 'https://www.abgeordnetenwatch.de/api/version-changelog/aktuell',
   'licence': 'CC0 1.0',
   'licence_link': 'https://creativecommons.org/publicdomain/zero/1.0/deed.de',
   'documentation': 'https://www.abgeordnetenwatch.de/api/entitaeten/politician'},
  'status': 'ok',
  'status_message': '',
  'result': {'count': 100,
   'total': 32084,
   'range_start': 0,
   'range_end': 100}},
 'data': [{'id': 180758,
   'entity_type': 'politician',
   'label': 'Cornelia von Loga',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180758',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-von-loga',
   'first_name': 'Cornelia',
   'last_name': 'von Loga',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 2,
    'entity_type': 'party',
    'label': 'CDU',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
   'party_past': None,
   'education': None,
   'residence': 'Baden-Baden',
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180757,
   'entity_type': 'politician',
   'label': 'Jens Münster',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180757',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-muenster',
   'first_name': 'Jens',
   'last_name': 'Münster',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1990,
   'party': {'id': 2,
    'entity_type': 'party',
    'label': 'CDU',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180756,
   'entity_type': 'politician',
   'label': 'Sascha Herr',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180756',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-herr',
   'first_name': 'Sascha',
   'last_name': 'Herr',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 185,
    'entity_type': 'party',
    'label': 'parteilos',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
   'party_past': 'Sascha Herr ist am 27.10.2023 aus der AfD ausgetreten. Bei der Wahl zum Hessischen Landtag 2023 trat er auf Platz 27 der AfD Landesliste an und erlangte darüber sein Mandat. ',
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180755,
   'entity_type': 'politician',
   'label': 'Dennis Klecker',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180755',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-klecker',
   'first_name': 'Dennis',
   'last_name': 'Klecker',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1990,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': 'Werkfeuerwehrmann',
   'residence': 'Ilsfeld',
   'occupation': 'MdL',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180754,
   'entity_type': 'politician',
   'label': 'Leo Puddu',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180754',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leo-puddu',
   'first_name': 'Leo',
   'last_name': 'Puddu',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1966,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': 'Limburg',
   'occupation': 'Vertriebsmitarbeiter',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180753,
   'entity_type': 'politician',
   'label': 'Matthias Lißmann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180753',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-lissmann',
   'first_name': 'Matthias',
   'last_name': 'Lißmann',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Gauting',
   'occupation': 'Textilbetriebswirt',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180752,
   'entity_type': 'politician',
   'label': 'Michael Herber',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180752',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-herber',
   'first_name': 'Michael',
   'last_name': 'Herber',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Pfaffenhofen a.d.Ilm',
   'occupation': 'IT-Prozessmanager',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180751,
   'entity_type': 'politician',
   'label': 'Gabriele Käsler',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180751',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-kaesler',
   'first_name': 'Gabriele',
   'last_name': 'Käsler',
   'birth_name': None,
   'sex': None,
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Königsmoos',
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180750,
   'entity_type': 'politician',
   'label': 'Kilian Ponschab',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180750',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kilian-ponschab',
   'first_name': 'Kilian',
   'last_name': 'Ponschab',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Böhmfeld',
   'occupation': 'Industriemechaniker',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180749,
   'entity_type': 'politician',
   'label': 'Katharina Erdrich',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180749',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-erdrich',
   'first_name': 'Katharina',
   'last_name': 'Erdrich',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'München',
   'occupation': 'Studentin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180748,
   'entity_type': 'politician',
   'label': 'Tobias Bauerfeind',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180748',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-bauerfeind',
   'first_name': 'Tobias',
   'last_name': 'Bauerfeind',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'München',
   'occupation': 'Mathematiker',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180747,
   'entity_type': 'politician',
   'label': 'Sercan Bünyamin Yolcu',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180747',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sercan-buenyamin-yolcu',
   'first_name': 'Sercan Bünyamin',
   'last_name': 'Yolcu',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1994,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Kempten',
   'occupation': 'Elektroniker',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180746,
   'entity_type': 'politician',
   'label': 'Anja Klingelhöfer',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180746',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-klingelhoefer',
   'first_name': 'Anja',
   'last_name': 'Klingelhöfer',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1982,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Augsburg',
   'occupation': 'Ausbilderin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180745,
   'entity_type': 'politician',
   'label': 'Stefan Bob Meitinger',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180745',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-bob-meitinger',
   'first_name': 'Stefan Bob',
   'last_name': 'Meitinger',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1969,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Augsburg',
   'occupation': 'Gastronom',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180744,
   'entity_type': 'politician',
   'label': 'Lisa McQueen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180744',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lisa-mcqueen',
   'first_name': 'Lisa',
   'last_name': 'McQueen',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1990,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': None,
   'residence': 'Augsburg',
   'occupation': 'Gastronomin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180743,
   'entity_type': 'politician',
   'label': 'Ingeborg Groebel',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180743',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-groebel',
   'first_name': 'Ingeborg',
   'last_name': 'Groebel',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1967,
   'party': {'id': 1,
    'entity_type': 'party',
    'label': 'SPD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
   'party_past': None,
   'education': 'Dipl.-Politologin',
   'residence': 'Wiesbaden',
   'occupation': 'Leiterin Bildungsbüro Stadt Wiesbaden ',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180742,
   'entity_type': 'politician',
   'label': 'Elke Homm-Vogel',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180742',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-homm-vogel',
   'first_name': 'Elke',
   'last_name': 'Homm-Vogel',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 7,
    'entity_type': 'party',
    'label': 'FREIE WÄHLER',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
   'party_past': None,
   'education': None,
   'residence': 'Ansbach',
   'occupation': 'Angestellte',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180741,
   'entity_type': 'politician',
   'label': 'Martin Köppl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180741',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-koeppl',
   'first_name': 'Martin',
   'last_name': 'Köppl',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': 'Patentassessor',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180740,
   'entity_type': 'politician',
   'label': 'Jürgen Euler',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180740',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-euler',
   'first_name': 'Jürgen',
   'last_name': 'Euler',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1966,
   'party': {'id': 227,
    'entity_type': 'party',
    'label': 'Praktiker Partei',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/227'},
   'party_past': None,
   'education': None,
   'residence': 'Schwalmtal',
   'occupation': 'Landwirt',
   'statistic_questions': 3,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180739,
   'entity_type': 'politician',
   'label': 'Mustfa Saleh',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180739',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mustfa-saleh',
   'first_name': 'Mustfa',
   'last_name': 'Saleh',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1993,
   'party': {'id': 228,
    'entity_type': 'party',
    'label': 'Wählergruppe Solidaritätsbewegung',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
   'party_past': None,
   'education': None,
   'residence': 'Kassel',
   'occupation': 'Student',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180738,
   'entity_type': 'politician',
   'label': 'Abdullhadi Husein',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180738',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/abdullhadi-husein',
   'first_name': 'Abdullhadi',
   'last_name': 'Husein',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 228,
    'entity_type': 'party',
    'label': 'Wählergruppe Solidaritätsbewegung',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180737,
   'entity_type': 'politician',
   'label': 'Jürgen Menzel',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180737',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-menzel-0',
   'first_name': 'Jürgen',
   'last_name': 'Menzel',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1966,
   'party': {'id': 4,
    'entity_type': 'party',
    'label': 'FDP',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
   'party_past': None,
   'education': None,
   'residence': 'Kassel',
   'occupation': 'Restaurantmanager',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180736,
   'entity_type': 'politician',
   'label': 'Manuela Ernst',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180736',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-ernst',
   'first_name': 'Manuela',
   'last_name': 'Ernst',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1974,
   'party': {'id': 4,
    'entity_type': 'party',
    'label': 'FDP',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
   'party_past': None,
   'education': None,
   'residence': 'Kassel',
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180735,
   'entity_type': 'politician',
   'label': 'Norbert Taufertshöfer',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180735',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-taufertshoefer',
   'first_name': 'Norbert',
   'last_name': 'Taufertshöfer',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1952,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': 'Dipl.-Ingenieur',
   'residence': 'Heppenheim',
   'occupation': None,
   'statistic_questions': 2,
   'statistic_questions_answered': 2,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180734,
   'entity_type': 'politician',
   'label': 'Bernd Engemann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180734',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-engemann',
   'first_name': 'Bernd',
   'last_name': 'Engemann',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1949,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': 'Dipl.-Ingenieur',
   'residence': 'Michelstadt',
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': 'Dr.'},
  {'id': 180733,
   'entity_type': 'politician',
   'label': 'Steffen Beese',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180733',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-beese',
   'first_name': 'Steffen',
   'last_name': 'Beese',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1987,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': None,
   'residence': 'Elz',
   'occupation': 'Kupolofenwerker',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180732,
   'entity_type': 'politician',
   'label': 'Gregor Ickert',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180732',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregor-ickert',
   'first_name': 'Gregor',
   'last_name': 'Ickert',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1956,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': None,
   'residence': 'Meißner',
   'occupation': 'Rentner',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180730,
   'entity_type': 'politician',
   'label': 'Olaf Margraf',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180730',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-margraf',
   'first_name': 'Olaf',
   'last_name': 'Margraf',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1961,
   'party': {'id': 226,
    'entity_type': 'party',
    'label': 'Aktion Bürger für Gerechtigkeit',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/226'},
   'party_past': None,
   'education': None,
   'residence': 'Fulda',
   'occupation': 'Rechtsanwalt',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180729,
   'entity_type': 'politician',
   'label': 'Evelyne Schuchmann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180729',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/evelyne-schuchmann',
   'first_name': 'Evelyne',
   'last_name': 'Schuchmann',
   'birth_name': 'Müller',
   'sex': 'f',
   'year_of_birth': 1954,
   'party': {'id': 225,
    'entity_type': 'party',
    'label': 'SGV Partei',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/225'},
   'party_past': None,
   'education': 'Verwaltungsangestellte',
   'residence': '64560 Riedstadt',
   'occupation': 'Rentnerin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180728,
   'entity_type': 'politician',
   'label': 'Frank Michler',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180728',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-michler',
   'first_name': 'Frank',
   'last_name': 'Michler',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1976,
   'party': {'id': 224,
    'entity_type': 'party',
    'label': 'Bürgerliste Weiterdenken',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/224'},
   'party_past': None,
   'education': None,
   'residence': 'Marburg',
   'occupation': 'Software-Entwickler',
   'statistic_questions': 3,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': 'Dr.'},
  {'id': 180727,
   'entity_type': 'politician',
   'label': 'Vincent Welsch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180727',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vincent-welsch',
   'first_name': 'Vincent',
   'last_name': 'Welsch',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1997,
   'party': {'id': 222,
    'entity_type': 'party',
    'label': 'MERA25',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': 'Auszubildender',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180726,
   'entity_type': 'politician',
   'label': 'Roman Bausch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180726',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-bausch',
   'first_name': 'Roman',
   'last_name': 'Bausch',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1982,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': 'Doctor of Philosophy (Economics) / Chula Univ. ',
   'residence': 'Wiesbaden',
   'occupation': 'Fraktionsreferent',
   'statistic_questions': 2,
   'statistic_questions_answered': 2,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180725,
   'entity_type': 'politician',
   'label': 'Norbert Hansmann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180725',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hansmann',
   'first_name': 'Norbert',
   'last_name': 'Hansmann',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1961,
   'party': {'id': 9,
    'entity_type': 'party',
    'label': 'AfD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
   'party_past': None,
   'education': None,
   'residence': 'Kassel',
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180724,
   'entity_type': 'politician',
   'label': 'Gregory Scholz',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180724',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregory-scholz',
   'first_name': 'Gregory',
   'last_name': 'Scholz',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1981,
   'party': {'id': 1,
    'entity_type': 'party',
    'label': 'SPD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
   'party_past': None,
   'education': 'Lehrer',
   'residence': 'Ludwigshafen-Oppau',
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180723,
   'entity_type': 'politician',
   'label': 'Philipp Borgartz',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180723',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-borgartz',
   'first_name': 'Philipp',
   'last_name': 'Borgartz',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1992,
   'party': {'id': 89,
    'entity_type': 'party',
    'label': 'APPD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/89'},
   'party_past': None,
   'education': 'Berufskraftfahrer',
   'residence': 'Darmstadt ',
   'occupation': 'Politiker ',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180722,
   'entity_type': 'politician',
   'label': 'Andrea Rehwald',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180722',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-rehwald',
   'first_name': 'Andrea',
   'last_name': 'Rehwald',
   'birth_name': 'Eisenbeis',
   'sex': 'f',
   'year_of_birth': 1964,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': 'Bürokaufmann',
   'residence': 'Merenberg',
   'occupation': 'Vertriebsmitarbeiterin',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180721,
   'entity_type': 'politician',
   'label': 'Miriam Fuchs',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180721',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-fuchs',
   'first_name': 'Miriam',
   'last_name': 'Fuchs',
   'birth_name': 'Schwarz',
   'sex': 'f',
   'year_of_birth': 1987,
   'party': {'id': 5,
    'entity_type': 'party',
    'label': 'Bündnis 90/Die Grünen',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
   'party_past': None,
   'education': 'Japanologin',
   'residence': 'Taunusstein',
   'occupation': 'Sprachdienstleisterin',
   'statistic_questions': 3,
   'statistic_questions_answered': 3,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180720,
   'entity_type': 'politician',
   'label': 'Simon Stratthaus',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180720',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-stratthaus',
   'first_name': 'Simon',
   'last_name': 'Stratthaus',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1995,
   'party': {'id': 16,
    'entity_type': 'party',
    'label': 'Die PARTEI',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
   'party_past': None,
   'education': 'Industriemechaniker',
   'residence': 'Offenbach am Main',
   'occupation': 'Industriemechaniker',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180719,
   'entity_type': 'politician',
   'label': 'Iris Hofmann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180719',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-hofmann',
   'first_name': 'Iris',
   'last_name': 'Hofmann',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 1,
    'entity_type': 'party',
    'label': 'SPD',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180718,
   'entity_type': 'politician',
   'label': 'Norbert Höhl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180718',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hoehl',
   'first_name': 'Norbert',
   'last_name': 'Höhl',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1957,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': None,
   'residence': 'Petersberg',
   'occupation': 'Lehrer',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180717,
   'entity_type': 'politician',
   'label': 'Edgar Winand',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180717',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-winand',
   'first_name': 'Edgar',
   'last_name': 'Winand',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1954,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': None,
   'residence': 'Usingen',
   'occupation': 'Rentner',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180716,
   'entity_type': 'politician',
   'label': 'Alain Kaffo',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180716',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alain-kaffo',
   'first_name': 'Alain',
   'last_name': 'Kaffo',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1980,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': 'Wirtschaftsingenieur',
   'residence': 'Fulda',
   'occupation': 'IT-Berater',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180715,
   'entity_type': 'politician',
   'label': 'Ludwig Grünert',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180715',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-gruenert',
   'first_name': 'Ludwig',
   'last_name': 'Grünert',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1992,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': None,
   'residence': 'Linden',
   'occupation': 'Notfallsanitäter',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180714,
   'entity_type': 'politician',
   'label': 'David Adler',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180714',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/david-adler',
   'first_name': 'David',
   'last_name': 'Adler',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1995,
   'party': {'id': 82,
    'entity_type': 'party',
    'label': 'Bündnis C',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
   'party_past': None,
   'education': None,
   'residence': 'Gießen',
   'occupation': 'Kinder- und Jugendreferent',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180713,
   'entity_type': 'politician',
   'label': 'Nadine Recker',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180713',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadine-recker',
   'first_name': 'Nadine',
   'last_name': 'Recker',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1994,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': 'Kassel',
   'occupation': 'Arbeitslose',
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180712,
   'entity_type': 'politician',
   'label': 'Susanne Stachon',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180712',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-stachon',
   'first_name': 'Susanne',
   'last_name': 'Stachon',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180711,
   'entity_type': 'politician',
   'label': 'Johanna Gomuloch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180711',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-gomuloch',
   'first_name': 'Johanna',
   'last_name': 'Gomuloch',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180710,
   'entity_type': 'politician',
   'label': 'Adriano Holatz',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180710',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adriano-holatz',
   'first_name': 'Adriano',
   'last_name': 'Holatz',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180709,
   'entity_type': 'politician',
   'label': 'Jas Fink',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180709',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jas-fink',
   'first_name': 'Jas',
   'last_name': 'Fink',
   'birth_name': None,
   'sex': None,
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Coach für Teamentwicklung und Burnoutprävention',
   'residence': 'Planet Erde',
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180708,
   'entity_type': 'politician',
   'label': 'Yvonne Machalett',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180708',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-machalett',
   'first_name': 'Yvonne',
   'last_name': 'Machalett',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 2,
   'statistic_questions_answered': 2,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180707,
   'entity_type': 'politician',
   'label': 'Sabine Relovsky',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180707',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-relovsky',
   'first_name': 'Sabine',
   'last_name': 'Relovsky',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180706,
   'entity_type': 'politician',
   'label': 'Tanja Kretzschmar',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180706',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-kretzschmar',
   'first_name': 'Tanja',
   'last_name': 'Kretzschmar',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180705,
   'entity_type': 'politician',
   'label': 'Kornelia Elsner',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180705',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kornelia-elsner',
   'first_name': 'Kornelia',
   'last_name': 'Elsner',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180704,
   'entity_type': 'politician',
   'label': 'Wilhelm Hartl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180704',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilhelm-hartl',
   'first_name': 'Wilhelm',
   'last_name': 'Hartl',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1971,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Geprüfter Wirtschaftsfachwirt (IHK)',
   'residence': 'Buttenwiesen',
   'occupation': 'aktuell arbeitsunfähig (Erwerbsminderungsrente)',
   'statistic_questions': 2,
   'statistic_questions_answered': 2,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180703,
   'entity_type': 'politician',
   'label': 'Natalie Brugger',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180703',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-brugger',
   'first_name': 'Natalie',
   'last_name': 'Brugger',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180702,
   'entity_type': 'politician',
   'label': 'Bernd Beigl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180702',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-beigl',
   'first_name': 'Bernd',
   'last_name': 'Beigl',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180701,
   'entity_type': 'politician',
   'label': 'Daniel Probst',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180701',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-probst',
   'first_name': 'Daniel',
   'last_name': 'Probst',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1998,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': 'Regensburg',
   'occupation': 'Finanzwirt',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180700,
   'entity_type': 'politician',
   'label': 'Melanie Zeletzki',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180700',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-zeletzki',
   'first_name': 'Melanie',
   'last_name': 'Zeletzki',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180699,
   'entity_type': 'politician',
   'label': 'Carina Horner',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180699',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-horner',
   'first_name': 'Carina',
   'last_name': 'Horner',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1980,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Politikwissenschaftlerin',
   'residence': None,
   'occupation': 'Dozentin für Deutsch und Latein; Eselwanderin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180698,
   'entity_type': 'politician',
   'label': 'Nina Veitengruber',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180698',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nina-veitengruber',
   'first_name': 'Nina',
   'last_name': 'Veitengruber',
   'birth_name': None,
   'sex': None,
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180697,
   'entity_type': 'politician',
   'label': 'Dominik Maier',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180697',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-maier',
   'first_name': 'Dominik',
   'last_name': 'Maier',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1987,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Gärtner',
   'residence': 'Unterwattenbach',
   'occupation': 'Gärtner',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180696,
   'entity_type': 'politician',
   'label': 'Marco Döring',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180696',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-doering',
   'first_name': 'Marco',
   'last_name': 'Döring',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180695,
   'entity_type': 'politician',
   'label': 'Benedikt Wieden',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180695',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-wieden',
   'first_name': 'Benedikt',
   'last_name': 'Wieden',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1998,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Anlagenmechaniker SHK',
   'residence': 'Traunreut',
   'occupation': 'Anlagenmechaniker für Sanitär, Heizungs- & Klimatechnik',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180694,
   'entity_type': 'politician',
   'label': 'Sabine Ipek',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180694',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-ipek',
   'first_name': 'Sabine',
   'last_name': 'Ipek',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180693,
   'entity_type': 'politician',
   'label': 'Julia Vogt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180693',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-vogt',
   'first_name': 'Julia',
   'last_name': 'Vogt',
   'birth_name': 'Vogt',
   'sex': 'f',
   'year_of_birth': 1993,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Grundschullehramt',
   'residence': 'München',
   'occupation': 'Lernbegleiterin an Reformschule',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180692,
   'entity_type': 'politician',
   'label': 'Janina Bierwirth',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180692',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janina-bierwirth',
   'first_name': 'Janina',
   'last_name': 'Bierwirth',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180691,
   'entity_type': 'politician',
   'label': 'Tobias Förth',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180691',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-foerth',
   'first_name': 'Tobias',
   'last_name': 'Förth',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180690,
   'entity_type': 'politician',
   'label': 'Filomela Varisco-Zinz',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180690',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/filomela-varisco-zinz',
   'first_name': 'Filomela',
   'last_name': 'Varisco-Zinz',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180689,
   'entity_type': 'politician',
   'label': 'Sarah Neukirchen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180689',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-neukirchen',
   'first_name': 'Sarah',
   'last_name': 'Neukirchen',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180688,
   'entity_type': 'politician',
   'label': 'Lukas Grötsch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180688',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-groetsch',
   'first_name': 'Lukas',
   'last_name': 'Grötsch',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180687,
   'entity_type': 'politician',
   'label': 'Luis Böhling',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180687',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luis-boehling',
   'first_name': 'Luis',
   'last_name': 'Böhling',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 2003,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': 'Dorfen',
   'occupation': 'Student',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180686,
   'entity_type': 'politician',
   'label': 'Daniel Braun',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180686',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-braun',
   'first_name': 'Daniel',
   'last_name': 'Braun',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180685,
   'entity_type': 'politician',
   'label': 'Beata Misiewicz',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180685',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beata-misiewicz',
   'first_name': 'Beata',
   'last_name': 'Misiewicz',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180684,
   'entity_type': 'politician',
   'label': 'Christiane Briem',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180684',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-briem',
   'first_name': 'Christiane',
   'last_name': 'Briem',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 1983,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': 'München ',
   'occupation': 'IT Systemanalytikerin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180683,
   'entity_type': 'politician',
   'label': 'Cornelia Wiedorn',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180683',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-wiedorn',
   'first_name': 'Cornelia',
   'last_name': 'Wiedorn',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': 2002,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': 'Fitnesstrainerin & Ernährungsberaterin',
   'residence': 'Gröbenzell',
   'occupation': 'Studentin & Kaufmännische Sachbearbeiterin',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180682,
   'entity_type': 'politician',
   'label': 'Ronja Angermaier',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180682',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronja-angermaier',
   'first_name': 'Ronja',
   'last_name': 'Angermaier',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180681,
   'entity_type': 'politician',
   'label': 'Maximilian Schmauß',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180681',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schmauss',
   'first_name': 'Maximilian',
   'last_name': 'Schmauß',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180680,
   'entity_type': 'politician',
   'label': 'Harald Matzke',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180680',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-matzke',
   'first_name': 'Harald',
   'last_name': 'Matzke',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180679,
   'entity_type': 'politician',
   'label': 'Sonja Zacherl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180679',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-zacherl',
   'first_name': 'Sonja',
   'last_name': 'Zacherl',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180678,
   'entity_type': 'politician',
   'label': 'Annika Kubitza',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180678',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annika-kubitza',
   'first_name': 'Annika',
   'last_name': 'Kubitza',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180677,
   'entity_type': 'politician',
   'label': 'Brigitte Hauschild',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180677',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-hauschild',
   'first_name': 'Brigitte',
   'last_name': 'Hauschild',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180676,
   'entity_type': 'politician',
   'label': 'Benjamin Mohrich',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180676',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-mohrich',
   'first_name': 'Benjamin',
   'last_name': 'Mohrich',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': 'UX Designer',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180675,
   'entity_type': 'politician',
   'label': 'Tobias Wiedorn',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180675',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-wiedorn',
   'first_name': 'Tobias',
   'last_name': 'Wiedorn',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 2004,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': 'Gröbenzell',
   'occupation': 'Student',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180674,
   'entity_type': 'politician',
   'label': 'Felicitas Koch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180674',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felicitas-koch',
   'first_name': 'Felicitas',
   'last_name': 'Koch',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180673,
   'entity_type': 'politician',
   'label': 'Anna Simon',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180673',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-simon',
   'first_name': 'Anna',
   'last_name': 'Simon',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180672,
   'entity_type': 'politician',
   'label': 'Korbinian Zacherl',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180672',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/korbinian-zacherl',
   'first_name': 'Korbinian',
   'last_name': 'Zacherl',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 168,
    'entity_type': 'party',
    'label': 'V-Partei³',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180671,
   'entity_type': 'politician',
   'label': 'Ralf Müller',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180671',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-mueller-1',
   'first_name': 'Ralf',
   'last_name': 'Müller',
   'birth_name': 'Müller',
   'sex': 'm',
   'year_of_birth': 1963,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Humanbiologe',
   'residence': '89250 Senden',
   'occupation': 'Forschung und Entwicklung',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': 'Dr.'},
  {'id': 180670,
   'entity_type': 'politician',
   'label': 'Ilona Christlmeier',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180670',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilona-christlmeier',
   'first_name': 'Ilona',
   'last_name': 'Christlmeier',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': 'IT-Mitarbeiterin',
   'statistic_questions': 2,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180669,
   'entity_type': 'politician',
   'label': 'Markus Bach',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180669',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-bach',
   'first_name': 'Markus',
   'last_name': 'Bach',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180668,
   'entity_type': 'politician',
   'label': 'Margit Kiessling',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180668',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/margit-kiessling',
   'first_name': 'Margit',
   'last_name': 'Kiessling',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180667,
   'entity_type': 'politician',
   'label': 'Brigitte Tina',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180667',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-tina',
   'first_name': 'Brigitte',
   'last_name': 'Tina',
   'birth_name': 'Schimana',
   'sex': 'f',
   'year_of_birth': 1960,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Medizinische Dokumentarin',
   'residence': 'Senden',
   'occupation': 'Rentnerin',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180666,
   'entity_type': 'politician',
   'label': 'Isabel Graumann',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180666',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-graumann',
   'first_name': 'Isabel',
   'last_name': 'Graumann',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180665,
   'entity_type': 'politician',
   'label': 'Peter Knörzer',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180665',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-knoerzer',
   'first_name': 'Peter',
   'last_name': 'Knörzer',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1958,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Groß- und Außenhandelskaufmann',
   'residence': 'Horgau',
   'occupation': 'selbständiger Kaufmann',
   'statistic_questions': 3,
   'statistic_questions_answered': 3,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180664,
   'entity_type': 'politician',
   'label': 'Benjamin Goßner',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180664',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-gossner',
   'first_name': 'Benjamin',
   'last_name': 'Goßner',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1986,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': 'Gas- und Wasserinstallateur',
   'statistic_questions': 2,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180663,
   'entity_type': 'politician',
   'label': 'Andreas Kahnt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180663',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kahnt',
   'first_name': 'Andreas',
   'last_name': 'Kahnt',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1960,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Diplom Ingenieur (FH)',
   'residence': 'Friedberg',
   'occupation': 'Linux Softwareentwickler',
   'statistic_questions': 2,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180662,
   'entity_type': 'politician',
   'label': 'Erich Schenk',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180662',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-schenk',
   'first_name': 'Erich',
   'last_name': 'Schenk',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180661,
   'entity_type': 'politician',
   'label': 'Elmar Straube',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180661',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elmar-straube',
   'first_name': 'Elmar',
   'last_name': 'Straube',
   'birth_name': 'Elmar Sebastian Wolfgang Straube',
   'sex': 'm',
   'year_of_birth': 1987,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Promotion in Schulpädagogik; Master of Education; Ausgebildeter Erlebnispädagoge; ',
   'residence': 'Augsburg',
   'occupation': 'Wissenchaftlicher Mitarbeiter und Dozent im Bereich Schulpädagogik; Erlebnispädagoge',
   'statistic_questions': 1,
   'statistic_questions_answered': 1,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': 'Dr.'},
  {'id': 180660,
   'entity_type': 'politician',
   'label': 'Stefan Ruthard',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180660',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ruthard',
   'first_name': 'Stefan',
   'last_name': 'Ruthard',
   'birth_name': 'Ruthard',
   'sex': 'm',
   'year_of_birth': 1962,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Statlich geprüfter Techniker Fachrichtung Maschienenbau',
   'residence': 'Eltmann',
   'occupation': 'Angestellter Konstrukteur Sonderfahrzeugbau',
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180659,
   'entity_type': 'politician',
   'label': 'Ronny Grünewald',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180659',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronny-gruenewald',
   'first_name': 'Ronny',
   'last_name': 'Grünewald',
   'birth_name': None,
   'sex': 'm',
   'year_of_birth': 1983,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': 'Techniker',
   'residence': 'Bergtheim',
   'occupation': 'Informatiker',
   'statistic_questions': 2,
   'statistic_questions_answered': 2,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None},
  {'id': 180658,
   'entity_type': 'politician',
   'label': 'Kamilla Meisenberger',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180658',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kamilla-meisenberger',
   'first_name': 'Kamilla',
   'last_name': 'Meisenberger',
   'birth_name': None,
   'sex': 'f',
   'year_of_birth': None,
   'party': {'id': 201,
    'entity_type': 'party',
    'label': 'dieBasis',
    'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
   'party_past': None,
   'education': None,
   'residence': None,
   'occupation': None,
   'statistic_questions': None,
   'statistic_questions_answered': None,
   'ext_id_bundestagsverwaltung': None,
   'qid_wikidata': None,
   'field_title': None}]}

Der Datentyp des Ergebnisses

type(result)
dict

Die unterschiedlichen Ergebnisse:

  • Metadaten

  • Antwort auf unseren Request

result.keys()
dict_keys(['meta', 'data'])
result['meta']
{'abgeordnetenwatch_api': {'version': '2.7',
  'changelog': 'https://www.abgeordnetenwatch.de/api/version-changelog/aktuell',
  'licence': 'CC0 1.0',
  'licence_link': 'https://creativecommons.org/publicdomain/zero/1.0/deed.de',
  'documentation': 'https://www.abgeordnetenwatch.de/api/entitaeten/politician'},
 'status': 'ok',
 'status_message': '',
 'result': {'count': 100, 'total': 32084, 'range_start': 0, 'range_end': 100}}
result['data']
[{'id': 180758,
  'entity_type': 'politician',
  'label': 'Cornelia von Loga',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-von-loga',
  'first_name': 'Cornelia',
  'last_name': 'von Loga',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Baden-Baden',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180757,
  'entity_type': 'politician',
  'label': 'Jens Münster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180757',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-muenster',
  'first_name': 'Jens',
  'last_name': 'Münster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180756,
  'entity_type': 'politician',
  'label': 'Sascha Herr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180756',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-herr',
  'first_name': 'Sascha',
  'last_name': 'Herr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 185,
   'entity_type': 'party',
   'label': 'parteilos',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
  'party_past': 'Sascha Herr ist am 27.10.2023 aus der AfD ausgetreten. Bei der Wahl zum Hessischen Landtag 2023 trat er auf Platz 27 der AfD Landesliste an und erlangte darüber sein Mandat. ',
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180755,
  'entity_type': 'politician',
  'label': 'Dennis Klecker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180755',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-klecker',
  'first_name': 'Dennis',
  'last_name': 'Klecker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Werkfeuerwehrmann',
  'residence': 'Ilsfeld',
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180754,
  'entity_type': 'politician',
  'label': 'Leo Puddu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180754',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leo-puddu',
  'first_name': 'Leo',
  'last_name': 'Puddu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Limburg',
  'occupation': 'Vertriebsmitarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180753,
  'entity_type': 'politician',
  'label': 'Matthias Lißmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180753',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-lissmann',
  'first_name': 'Matthias',
  'last_name': 'Lißmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Gauting',
  'occupation': 'Textilbetriebswirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180752,
  'entity_type': 'politician',
  'label': 'Michael Herber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180752',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-herber',
  'first_name': 'Michael',
  'last_name': 'Herber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Pfaffenhofen a.d.Ilm',
  'occupation': 'IT-Prozessmanager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180751,
  'entity_type': 'politician',
  'label': 'Gabriele Käsler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180751',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-kaesler',
  'first_name': 'Gabriele',
  'last_name': 'Käsler',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Königsmoos',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180750,
  'entity_type': 'politician',
  'label': 'Kilian Ponschab',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180750',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kilian-ponschab',
  'first_name': 'Kilian',
  'last_name': 'Ponschab',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Böhmfeld',
  'occupation': 'Industriemechaniker',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180749,
  'entity_type': 'politician',
  'label': 'Katharina Erdrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180749',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-erdrich',
  'first_name': 'Katharina',
  'last_name': 'Erdrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180748,
  'entity_type': 'politician',
  'label': 'Tobias Bauerfeind',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180748',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-bauerfeind',
  'first_name': 'Tobias',
  'last_name': 'Bauerfeind',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Mathematiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180747,
  'entity_type': 'politician',
  'label': 'Sercan Bünyamin Yolcu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180747',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sercan-buenyamin-yolcu',
  'first_name': 'Sercan Bünyamin',
  'last_name': 'Yolcu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Kempten',
  'occupation': 'Elektroniker',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180746,
  'entity_type': 'politician',
  'label': 'Anja Klingelhöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180746',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-klingelhoefer',
  'first_name': 'Anja',
  'last_name': 'Klingelhöfer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Ausbilderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180745,
  'entity_type': 'politician',
  'label': 'Stefan Bob Meitinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180745',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-bob-meitinger',
  'first_name': 'Stefan Bob',
  'last_name': 'Meitinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronom',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180744,
  'entity_type': 'politician',
  'label': 'Lisa McQueen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180744',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lisa-mcqueen',
  'first_name': 'Lisa',
  'last_name': 'McQueen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronomin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180743,
  'entity_type': 'politician',
  'label': 'Ingeborg Groebel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180743',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-groebel',
  'first_name': 'Ingeborg',
  'last_name': 'Groebel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Dipl.-Politologin',
  'residence': 'Wiesbaden',
  'occupation': 'Leiterin Bildungsbüro Stadt Wiesbaden ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180742,
  'entity_type': 'politician',
  'label': 'Elke Homm-Vogel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180742',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-homm-vogel',
  'first_name': 'Elke',
  'last_name': 'Homm-Vogel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Ansbach',
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180741,
  'entity_type': 'politician',
  'label': 'Martin Köppl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180741',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-koeppl',
  'first_name': 'Martin',
  'last_name': 'Köppl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Patentassessor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180740,
  'entity_type': 'politician',
  'label': 'Jürgen Euler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180740',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-euler',
  'first_name': 'Jürgen',
  'last_name': 'Euler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 227,
   'entity_type': 'party',
   'label': 'Praktiker Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/227'},
  'party_past': None,
  'education': None,
  'residence': 'Schwalmtal',
  'occupation': 'Landwirt',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180739,
  'entity_type': 'politician',
  'label': 'Mustfa Saleh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180739',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mustfa-saleh',
  'first_name': 'Mustfa',
  'last_name': 'Saleh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Student',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180738,
  'entity_type': 'politician',
  'label': 'Abdullhadi Husein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180738',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/abdullhadi-husein',
  'first_name': 'Abdullhadi',
  'last_name': 'Husein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180737,
  'entity_type': 'politician',
  'label': 'Jürgen Menzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180737',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-menzel-0',
  'first_name': 'Jürgen',
  'last_name': 'Menzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Restaurantmanager',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180736,
  'entity_type': 'politician',
  'label': 'Manuela Ernst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180736',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-ernst',
  'first_name': 'Manuela',
  'last_name': 'Ernst',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180735,
  'entity_type': 'politician',
  'label': 'Norbert Taufertshöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180735',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-taufertshoefer',
  'first_name': 'Norbert',
  'last_name': 'Taufertshöfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Heppenheim',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180734,
  'entity_type': 'politician',
  'label': 'Bernd Engemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180734',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-engemann',
  'first_name': 'Bernd',
  'last_name': 'Engemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Michelstadt',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180733,
  'entity_type': 'politician',
  'label': 'Steffen Beese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180733',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-beese',
  'first_name': 'Steffen',
  'last_name': 'Beese',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Elz',
  'occupation': 'Kupolofenwerker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180732,
  'entity_type': 'politician',
  'label': 'Gregor Ickert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180732',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregor-ickert',
  'first_name': 'Gregor',
  'last_name': 'Ickert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Meißner',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180730,
  'entity_type': 'politician',
  'label': 'Olaf Margraf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180730',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-margraf',
  'first_name': 'Olaf',
  'last_name': 'Margraf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 226,
   'entity_type': 'party',
   'label': 'Aktion Bürger für Gerechtigkeit',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/226'},
  'party_past': None,
  'education': None,
  'residence': 'Fulda',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180729,
  'entity_type': 'politician',
  'label': 'Evelyne Schuchmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180729',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/evelyne-schuchmann',
  'first_name': 'Evelyne',
  'last_name': 'Schuchmann',
  'birth_name': 'Müller',
  'sex': 'f',
  'year_of_birth': 1954,
  'party': {'id': 225,
   'entity_type': 'party',
   'label': 'SGV Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/225'},
  'party_past': None,
  'education': 'Verwaltungsangestellte',
  'residence': '64560 Riedstadt',
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180728,
  'entity_type': 'politician',
  'label': 'Frank Michler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180728',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-michler',
  'first_name': 'Frank',
  'last_name': 'Michler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 224,
   'entity_type': 'party',
   'label': 'Bürgerliste Weiterdenken',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/224'},
  'party_past': None,
  'education': None,
  'residence': 'Marburg',
  'occupation': 'Software-Entwickler',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180727,
  'entity_type': 'politician',
  'label': 'Vincent Welsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180727',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vincent-welsch',
  'first_name': 'Vincent',
  'last_name': 'Welsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Auszubildender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180726,
  'entity_type': 'politician',
  'label': 'Roman Bausch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180726',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-bausch',
  'first_name': 'Roman',
  'last_name': 'Bausch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Doctor of Philosophy (Economics) / Chula Univ. ',
  'residence': 'Wiesbaden',
  'occupation': 'Fraktionsreferent',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180725,
  'entity_type': 'politician',
  'label': 'Norbert Hansmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180725',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hansmann',
  'first_name': 'Norbert',
  'last_name': 'Hansmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180724,
  'entity_type': 'politician',
  'label': 'Gregory Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180724',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregory-scholz',
  'first_name': 'Gregory',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': 'Ludwigshafen-Oppau',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180723,
  'entity_type': 'politician',
  'label': 'Philipp Borgartz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180723',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-borgartz',
  'first_name': 'Philipp',
  'last_name': 'Borgartz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 89,
   'entity_type': 'party',
   'label': 'APPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/89'},
  'party_past': None,
  'education': 'Berufskraftfahrer',
  'residence': 'Darmstadt ',
  'occupation': 'Politiker ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180722,
  'entity_type': 'politician',
  'label': 'Andrea Rehwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180722',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-rehwald',
  'first_name': 'Andrea',
  'last_name': 'Rehwald',
  'birth_name': 'Eisenbeis',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Bürokaufmann',
  'residence': 'Merenberg',
  'occupation': 'Vertriebsmitarbeiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180721,
  'entity_type': 'politician',
  'label': 'Miriam Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180721',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-fuchs',
  'first_name': 'Miriam',
  'last_name': 'Fuchs',
  'birth_name': 'Schwarz',
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Japanologin',
  'residence': 'Taunusstein',
  'occupation': 'Sprachdienstleisterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180720,
  'entity_type': 'politician',
  'label': 'Simon Stratthaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180720',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-stratthaus',
  'first_name': 'Simon',
  'last_name': 'Stratthaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Industriemechaniker',
  'residence': 'Offenbach am Main',
  'occupation': 'Industriemechaniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180719,
  'entity_type': 'politician',
  'label': 'Iris Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-hofmann',
  'first_name': 'Iris',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180718,
  'entity_type': 'politician',
  'label': 'Norbert Höhl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180718',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hoehl',
  'first_name': 'Norbert',
  'last_name': 'Höhl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Petersberg',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180717,
  'entity_type': 'politician',
  'label': 'Edgar Winand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180717',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-winand',
  'first_name': 'Edgar',
  'last_name': 'Winand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Usingen',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180716,
  'entity_type': 'politician',
  'label': 'Alain Kaffo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180716',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alain-kaffo',
  'first_name': 'Alain',
  'last_name': 'Kaffo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Fulda',
  'occupation': 'IT-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180715,
  'entity_type': 'politician',
  'label': 'Ludwig Grünert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180715',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-gruenert',
  'first_name': 'Ludwig',
  'last_name': 'Grünert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Linden',
  'occupation': 'Notfallsanitäter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180714,
  'entity_type': 'politician',
  'label': 'David Adler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180714',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/david-adler',
  'first_name': 'David',
  'last_name': 'Adler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': 'Kinder- und Jugendreferent',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180713,
  'entity_type': 'politician',
  'label': 'Nadine Recker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180713',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadine-recker',
  'first_name': 'Nadine',
  'last_name': 'Recker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Arbeitslose',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180712,
  'entity_type': 'politician',
  'label': 'Susanne Stachon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180712',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-stachon',
  'first_name': 'Susanne',
  'last_name': 'Stachon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180711,
  'entity_type': 'politician',
  'label': 'Johanna Gomuloch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180711',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-gomuloch',
  'first_name': 'Johanna',
  'last_name': 'Gomuloch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180710,
  'entity_type': 'politician',
  'label': 'Adriano Holatz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adriano-holatz',
  'first_name': 'Adriano',
  'last_name': 'Holatz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180709,
  'entity_type': 'politician',
  'label': 'Jas Fink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180709',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jas-fink',
  'first_name': 'Jas',
  'last_name': 'Fink',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Coach für Teamentwicklung und Burnoutprävention',
  'residence': 'Planet Erde',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180708,
  'entity_type': 'politician',
  'label': 'Yvonne Machalett',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180708',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-machalett',
  'first_name': 'Yvonne',
  'last_name': 'Machalett',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180707,
  'entity_type': 'politician',
  'label': 'Sabine Relovsky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180707',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-relovsky',
  'first_name': 'Sabine',
  'last_name': 'Relovsky',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180706,
  'entity_type': 'politician',
  'label': 'Tanja Kretzschmar',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180706',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-kretzschmar',
  'first_name': 'Tanja',
  'last_name': 'Kretzschmar',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180705,
  'entity_type': 'politician',
  'label': 'Kornelia Elsner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180705',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kornelia-elsner',
  'first_name': 'Kornelia',
  'last_name': 'Elsner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180704,
  'entity_type': 'politician',
  'label': 'Wilhelm Hartl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180704',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilhelm-hartl',
  'first_name': 'Wilhelm',
  'last_name': 'Hartl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Geprüfter Wirtschaftsfachwirt (IHK)',
  'residence': 'Buttenwiesen',
  'occupation': 'aktuell arbeitsunfähig (Erwerbsminderungsrente)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180703,
  'entity_type': 'politician',
  'label': 'Natalie Brugger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-brugger',
  'first_name': 'Natalie',
  'last_name': 'Brugger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180702,
  'entity_type': 'politician',
  'label': 'Bernd Beigl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180702',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-beigl',
  'first_name': 'Bernd',
  'last_name': 'Beigl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180701,
  'entity_type': 'politician',
  'label': 'Daniel Probst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180701',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-probst',
  'first_name': 'Daniel',
  'last_name': 'Probst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Regensburg',
  'occupation': 'Finanzwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180700,
  'entity_type': 'politician',
  'label': 'Melanie Zeletzki',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180700',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-zeletzki',
  'first_name': 'Melanie',
  'last_name': 'Zeletzki',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180699,
  'entity_type': 'politician',
  'label': 'Carina Horner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180699',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-horner',
  'first_name': 'Carina',
  'last_name': 'Horner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': None,
  'occupation': 'Dozentin für Deutsch und Latein; Eselwanderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180698,
  'entity_type': 'politician',
  'label': 'Nina Veitengruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180698',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nina-veitengruber',
  'first_name': 'Nina',
  'last_name': 'Veitengruber',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180697,
  'entity_type': 'politician',
  'label': 'Dominik Maier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180697',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-maier',
  'first_name': 'Dominik',
  'last_name': 'Maier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Gärtner',
  'residence': 'Unterwattenbach',
  'occupation': 'Gärtner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180696,
  'entity_type': 'politician',
  'label': 'Marco Döring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180696',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-doering',
  'first_name': 'Marco',
  'last_name': 'Döring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180695,
  'entity_type': 'politician',
  'label': 'Benedikt Wieden',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180695',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-wieden',
  'first_name': 'Benedikt',
  'last_name': 'Wieden',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Anlagenmechaniker SHK',
  'residence': 'Traunreut',
  'occupation': 'Anlagenmechaniker für Sanitär, Heizungs- & Klimatechnik',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180694,
  'entity_type': 'politician',
  'label': 'Sabine Ipek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180694',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-ipek',
  'first_name': 'Sabine',
  'last_name': 'Ipek',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180693,
  'entity_type': 'politician',
  'label': 'Julia Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180693',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-vogt',
  'first_name': 'Julia',
  'last_name': 'Vogt',
  'birth_name': 'Vogt',
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Grundschullehramt',
  'residence': 'München',
  'occupation': 'Lernbegleiterin an Reformschule',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180692,
  'entity_type': 'politician',
  'label': 'Janina Bierwirth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180692',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janina-bierwirth',
  'first_name': 'Janina',
  'last_name': 'Bierwirth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180691,
  'entity_type': 'politician',
  'label': 'Tobias Förth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180691',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-foerth',
  'first_name': 'Tobias',
  'last_name': 'Förth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180690,
  'entity_type': 'politician',
  'label': 'Filomela Varisco-Zinz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180690',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/filomela-varisco-zinz',
  'first_name': 'Filomela',
  'last_name': 'Varisco-Zinz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180689,
  'entity_type': 'politician',
  'label': 'Sarah Neukirchen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180689',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-neukirchen',
  'first_name': 'Sarah',
  'last_name': 'Neukirchen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180688,
  'entity_type': 'politician',
  'label': 'Lukas Grötsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180688',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-groetsch',
  'first_name': 'Lukas',
  'last_name': 'Grötsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180687,
  'entity_type': 'politician',
  'label': 'Luis Böhling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180687',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luis-boehling',
  'first_name': 'Luis',
  'last_name': 'Böhling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Dorfen',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180686,
  'entity_type': 'politician',
  'label': 'Daniel Braun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180686',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-braun',
  'first_name': 'Daniel',
  'last_name': 'Braun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180685,
  'entity_type': 'politician',
  'label': 'Beata Misiewicz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180685',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beata-misiewicz',
  'first_name': 'Beata',
  'last_name': 'Misiewicz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180684,
  'entity_type': 'politician',
  'label': 'Christiane Briem',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180684',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-briem',
  'first_name': 'Christiane',
  'last_name': 'Briem',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'München ',
  'occupation': 'IT Systemanalytikerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180683,
  'entity_type': 'politician',
  'label': 'Cornelia Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180683',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-wiedorn',
  'first_name': 'Cornelia',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2002,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Fitnesstrainerin & Ernährungsberaterin',
  'residence': 'Gröbenzell',
  'occupation': 'Studentin & Kaufmännische Sachbearbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180682,
  'entity_type': 'politician',
  'label': 'Ronja Angermaier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180682',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronja-angermaier',
  'first_name': 'Ronja',
  'last_name': 'Angermaier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180681,
  'entity_type': 'politician',
  'label': 'Maximilian Schmauß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180681',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schmauss',
  'first_name': 'Maximilian',
  'last_name': 'Schmauß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180680,
  'entity_type': 'politician',
  'label': 'Harald Matzke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180680',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-matzke',
  'first_name': 'Harald',
  'last_name': 'Matzke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180679,
  'entity_type': 'politician',
  'label': 'Sonja Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180679',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-zacherl',
  'first_name': 'Sonja',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180678,
  'entity_type': 'politician',
  'label': 'Annika Kubitza',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180678',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annika-kubitza',
  'first_name': 'Annika',
  'last_name': 'Kubitza',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180677,
  'entity_type': 'politician',
  'label': 'Brigitte Hauschild',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180677',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-hauschild',
  'first_name': 'Brigitte',
  'last_name': 'Hauschild',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180676,
  'entity_type': 'politician',
  'label': 'Benjamin Mohrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180676',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-mohrich',
  'first_name': 'Benjamin',
  'last_name': 'Mohrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'UX Designer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180675,
  'entity_type': 'politician',
  'label': 'Tobias Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180675',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-wiedorn',
  'first_name': 'Tobias',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Gröbenzell',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180674,
  'entity_type': 'politician',
  'label': 'Felicitas Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180674',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felicitas-koch',
  'first_name': 'Felicitas',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180673,
  'entity_type': 'politician',
  'label': 'Anna Simon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180673',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-simon',
  'first_name': 'Anna',
  'last_name': 'Simon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180672,
  'entity_type': 'politician',
  'label': 'Korbinian Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180672',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/korbinian-zacherl',
  'first_name': 'Korbinian',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180671,
  'entity_type': 'politician',
  'label': 'Ralf Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180671',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-mueller-1',
  'first_name': 'Ralf',
  'last_name': 'Müller',
  'birth_name': 'Müller',
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Humanbiologe',
  'residence': '89250 Senden',
  'occupation': 'Forschung und Entwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180670,
  'entity_type': 'politician',
  'label': 'Ilona Christlmeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180670',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilona-christlmeier',
  'first_name': 'Ilona',
  'last_name': 'Christlmeier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'IT-Mitarbeiterin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180669,
  'entity_type': 'politician',
  'label': 'Markus Bach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180669',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-bach',
  'first_name': 'Markus',
  'last_name': 'Bach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180668,
  'entity_type': 'politician',
  'label': 'Margit Kiessling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180668',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/margit-kiessling',
  'first_name': 'Margit',
  'last_name': 'Kiessling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180667,
  'entity_type': 'politician',
  'label': 'Brigitte Tina',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180667',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-tina',
  'first_name': 'Brigitte',
  'last_name': 'Tina',
  'birth_name': 'Schimana',
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Medizinische Dokumentarin',
  'residence': 'Senden',
  'occupation': 'Rentnerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180666,
  'entity_type': 'politician',
  'label': 'Isabel Graumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180666',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-graumann',
  'first_name': 'Isabel',
  'last_name': 'Graumann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180665,
  'entity_type': 'politician',
  'label': 'Peter Knörzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180665',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-knoerzer',
  'first_name': 'Peter',
  'last_name': 'Knörzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': 'Horgau',
  'occupation': 'selbständiger Kaufmann',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180664,
  'entity_type': 'politician',
  'label': 'Benjamin Goßner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180664',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-gossner',
  'first_name': 'Benjamin',
  'last_name': 'Goßner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Gas- und Wasserinstallateur',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180663,
  'entity_type': 'politician',
  'label': 'Andreas Kahnt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180663',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kahnt',
  'first_name': 'Andreas',
  'last_name': 'Kahnt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom Ingenieur (FH)',
  'residence': 'Friedberg',
  'occupation': 'Linux Softwareentwickler',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180662,
  'entity_type': 'politician',
  'label': 'Erich Schenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180662',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-schenk',
  'first_name': 'Erich',
  'last_name': 'Schenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180661,
  'entity_type': 'politician',
  'label': 'Elmar Straube',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180661',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elmar-straube',
  'first_name': 'Elmar',
  'last_name': 'Straube',
  'birth_name': 'Elmar Sebastian Wolfgang Straube',
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Promotion in Schulpädagogik; Master of Education; Ausgebildeter Erlebnispädagoge; ',
  'residence': 'Augsburg',
  'occupation': 'Wissenchaftlicher Mitarbeiter und Dozent im Bereich Schulpädagogik; Erlebnispädagoge',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180660,
  'entity_type': 'politician',
  'label': 'Stefan Ruthard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180660',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ruthard',
  'first_name': 'Stefan',
  'last_name': 'Ruthard',
  'birth_name': 'Ruthard',
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Statlich geprüfter Techniker Fachrichtung Maschienenbau',
  'residence': 'Eltmann',
  'occupation': 'Angestellter Konstrukteur Sonderfahrzeugbau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180659,
  'entity_type': 'politician',
  'label': 'Ronny Grünewald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180659',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronny-gruenewald',
  'first_name': 'Ronny',
  'last_name': 'Grünewald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Techniker',
  'residence': 'Bergtheim',
  'occupation': 'Informatiker',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180658,
  'entity_type': 'politician',
  'label': 'Kamilla Meisenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180658',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kamilla-meisenberger',
  'first_name': 'Kamilla',
  'last_name': 'Meisenberger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]
type(result['data'])
list
len(result['data'])
100
result['data'][20]['party']['label']
'Wählergruppe Solidaritätsbewegung'

Gib den Beruf und die Partei aller Politiker:innen aus

for i in result['data']:
    print(i['party']['label'])
    if i['occupation'] != None:
        print(i['occupation'])
    print('--\n')
CDU
--

CDU
--

parteilos
--

AfD
MdL
--

dieBasis
Vertriebsmitarbeiter
--

Die PARTEI
Textilbetriebswirt
--

Die PARTEI
IT-Prozessmanager
--

Die PARTEI
--

Die PARTEI
Industriemechaniker
--

Die PARTEI
Studentin
--

Die PARTEI
Mathematiker
--

Die PARTEI
Elektroniker
--

Die PARTEI
Ausbilderin
--

Die PARTEI
Gastronom
--

Die PARTEI
Gastronomin
--

SPD
Leiterin Bildungsbüro Stadt Wiesbaden 
--

FREIE WÄHLER
Angestellte
--

AfD
Patentassessor
--

Praktiker Partei
Landwirt
--

Wählergruppe Solidaritätsbewegung
Student
--

Wählergruppe Solidaritätsbewegung
--

FDP
Restaurantmanager
--

FDP
--

AfD
--

AfD
--

AfD
Kupolofenwerker
--

AfD
Rentner
--

Aktion Bürger für Gerechtigkeit
Rechtsanwalt
--

SGV Partei
Rentnerin
--

Bürgerliste Weiterdenken
Software-Entwickler
--

MERA25
Auszubildender
--

AfD
Fraktionsreferent
--

AfD
--

SPD
--

APPD
Politiker 
--

Bündnis C
Vertriebsmitarbeiterin
--

Bündnis 90/Die Grünen
Sprachdienstleisterin
--

Die PARTEI
Industriemechaniker
--

SPD
--

Bündnis C
Lehrer
--

Bündnis C
Rentner
--

Bündnis C
IT-Berater
--

Bündnis C
Notfallsanitäter
--

Bündnis C
Kinder- und Jugendreferent
--

V-Partei³
Arbeitslose
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
aktuell arbeitsunfähig (Erwerbsminderungsrente)
--

V-Partei³
--

V-Partei³
--

V-Partei³
Finanzwirt
--

V-Partei³
--

V-Partei³
Dozentin für Deutsch und Latein; Eselwanderin
--

V-Partei³
--

V-Partei³
Gärtner
--

V-Partei³
--

V-Partei³
Anlagenmechaniker für Sanitär, Heizungs- & Klimatechnik
--

V-Partei³
--

V-Partei³
Lernbegleiterin an Reformschule
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
Student
--

V-Partei³
--

V-Partei³
--

V-Partei³
IT Systemanalytikerin
--

V-Partei³
Studentin & Kaufmännische Sachbearbeiterin
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

V-Partei³
UX Designer
--

V-Partei³
Student
--

V-Partei³
--

V-Partei³
--

V-Partei³
--

dieBasis
Forschung und Entwicklung
--

dieBasis
IT-Mitarbeiterin
--

dieBasis
--

dieBasis
--

dieBasis
Rentnerin
--

dieBasis
--

dieBasis
selbständiger Kaufmann
--

dieBasis
Gas- und Wasserinstallateur
--

dieBasis
Linux Softwareentwickler
--

dieBasis
--

dieBasis
Wissenchaftlicher Mitarbeiter und Dozent im Bereich Schulpädagogik; Erlebnispädagoge
--

dieBasis
Angestellter Konstrukteur Sonderfahrzeugbau
--

dieBasis
Informatiker
--

dieBasis
--

Relevante Daten extrahieren#

url = 'https://www.abgeordnetenwatch.de/api/v2/politicians'
response = requests.get(url)
data = response.json()['data']
data
[{'id': 180758,
  'entity_type': 'politician',
  'label': 'Cornelia von Loga',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-von-loga',
  'first_name': 'Cornelia',
  'last_name': 'von Loga',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Baden-Baden',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180757,
  'entity_type': 'politician',
  'label': 'Jens Münster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180757',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-muenster',
  'first_name': 'Jens',
  'last_name': 'Münster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180756,
  'entity_type': 'politician',
  'label': 'Sascha Herr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180756',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-herr',
  'first_name': 'Sascha',
  'last_name': 'Herr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 185,
   'entity_type': 'party',
   'label': 'parteilos',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
  'party_past': 'Sascha Herr ist am 27.10.2023 aus der AfD ausgetreten. Bei der Wahl zum Hessischen Landtag 2023 trat er auf Platz 27 der AfD Landesliste an und erlangte darüber sein Mandat. ',
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180755,
  'entity_type': 'politician',
  'label': 'Dennis Klecker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180755',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-klecker',
  'first_name': 'Dennis',
  'last_name': 'Klecker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Werkfeuerwehrmann',
  'residence': 'Ilsfeld',
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180754,
  'entity_type': 'politician',
  'label': 'Leo Puddu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180754',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leo-puddu',
  'first_name': 'Leo',
  'last_name': 'Puddu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Limburg',
  'occupation': 'Vertriebsmitarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180753,
  'entity_type': 'politician',
  'label': 'Matthias Lißmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180753',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-lissmann',
  'first_name': 'Matthias',
  'last_name': 'Lißmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Gauting',
  'occupation': 'Textilbetriebswirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180752,
  'entity_type': 'politician',
  'label': 'Michael Herber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180752',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-herber',
  'first_name': 'Michael',
  'last_name': 'Herber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Pfaffenhofen a.d.Ilm',
  'occupation': 'IT-Prozessmanager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180751,
  'entity_type': 'politician',
  'label': 'Gabriele Käsler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180751',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-kaesler',
  'first_name': 'Gabriele',
  'last_name': 'Käsler',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Königsmoos',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180750,
  'entity_type': 'politician',
  'label': 'Kilian Ponschab',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180750',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kilian-ponschab',
  'first_name': 'Kilian',
  'last_name': 'Ponschab',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Böhmfeld',
  'occupation': 'Industriemechaniker',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180749,
  'entity_type': 'politician',
  'label': 'Katharina Erdrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180749',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-erdrich',
  'first_name': 'Katharina',
  'last_name': 'Erdrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180748,
  'entity_type': 'politician',
  'label': 'Tobias Bauerfeind',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180748',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-bauerfeind',
  'first_name': 'Tobias',
  'last_name': 'Bauerfeind',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Mathematiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180747,
  'entity_type': 'politician',
  'label': 'Sercan Bünyamin Yolcu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180747',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sercan-buenyamin-yolcu',
  'first_name': 'Sercan Bünyamin',
  'last_name': 'Yolcu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Kempten',
  'occupation': 'Elektroniker',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180746,
  'entity_type': 'politician',
  'label': 'Anja Klingelhöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180746',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-klingelhoefer',
  'first_name': 'Anja',
  'last_name': 'Klingelhöfer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Ausbilderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180745,
  'entity_type': 'politician',
  'label': 'Stefan Bob Meitinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180745',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-bob-meitinger',
  'first_name': 'Stefan Bob',
  'last_name': 'Meitinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronom',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180744,
  'entity_type': 'politician',
  'label': 'Lisa McQueen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180744',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lisa-mcqueen',
  'first_name': 'Lisa',
  'last_name': 'McQueen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronomin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180743,
  'entity_type': 'politician',
  'label': 'Ingeborg Groebel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180743',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-groebel',
  'first_name': 'Ingeborg',
  'last_name': 'Groebel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Dipl.-Politologin',
  'residence': 'Wiesbaden',
  'occupation': 'Leiterin Bildungsbüro Stadt Wiesbaden ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180742,
  'entity_type': 'politician',
  'label': 'Elke Homm-Vogel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180742',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-homm-vogel',
  'first_name': 'Elke',
  'last_name': 'Homm-Vogel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Ansbach',
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180741,
  'entity_type': 'politician',
  'label': 'Martin Köppl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180741',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-koeppl',
  'first_name': 'Martin',
  'last_name': 'Köppl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Patentassessor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180740,
  'entity_type': 'politician',
  'label': 'Jürgen Euler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180740',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-euler',
  'first_name': 'Jürgen',
  'last_name': 'Euler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 227,
   'entity_type': 'party',
   'label': 'Praktiker Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/227'},
  'party_past': None,
  'education': None,
  'residence': 'Schwalmtal',
  'occupation': 'Landwirt',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180739,
  'entity_type': 'politician',
  'label': 'Mustfa Saleh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180739',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mustfa-saleh',
  'first_name': 'Mustfa',
  'last_name': 'Saleh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Student',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180738,
  'entity_type': 'politician',
  'label': 'Abdullhadi Husein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180738',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/abdullhadi-husein',
  'first_name': 'Abdullhadi',
  'last_name': 'Husein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180737,
  'entity_type': 'politician',
  'label': 'Jürgen Menzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180737',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-menzel-0',
  'first_name': 'Jürgen',
  'last_name': 'Menzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Restaurantmanager',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180736,
  'entity_type': 'politician',
  'label': 'Manuela Ernst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180736',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-ernst',
  'first_name': 'Manuela',
  'last_name': 'Ernst',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180735,
  'entity_type': 'politician',
  'label': 'Norbert Taufertshöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180735',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-taufertshoefer',
  'first_name': 'Norbert',
  'last_name': 'Taufertshöfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Heppenheim',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180734,
  'entity_type': 'politician',
  'label': 'Bernd Engemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180734',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-engemann',
  'first_name': 'Bernd',
  'last_name': 'Engemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Michelstadt',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180733,
  'entity_type': 'politician',
  'label': 'Steffen Beese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180733',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-beese',
  'first_name': 'Steffen',
  'last_name': 'Beese',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Elz',
  'occupation': 'Kupolofenwerker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180732,
  'entity_type': 'politician',
  'label': 'Gregor Ickert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180732',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregor-ickert',
  'first_name': 'Gregor',
  'last_name': 'Ickert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Meißner',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180730,
  'entity_type': 'politician',
  'label': 'Olaf Margraf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180730',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-margraf',
  'first_name': 'Olaf',
  'last_name': 'Margraf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 226,
   'entity_type': 'party',
   'label': 'Aktion Bürger für Gerechtigkeit',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/226'},
  'party_past': None,
  'education': None,
  'residence': 'Fulda',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180729,
  'entity_type': 'politician',
  'label': 'Evelyne Schuchmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180729',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/evelyne-schuchmann',
  'first_name': 'Evelyne',
  'last_name': 'Schuchmann',
  'birth_name': 'Müller',
  'sex': 'f',
  'year_of_birth': 1954,
  'party': {'id': 225,
   'entity_type': 'party',
   'label': 'SGV Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/225'},
  'party_past': None,
  'education': 'Verwaltungsangestellte',
  'residence': '64560 Riedstadt',
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180728,
  'entity_type': 'politician',
  'label': 'Frank Michler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180728',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-michler',
  'first_name': 'Frank',
  'last_name': 'Michler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 224,
   'entity_type': 'party',
   'label': 'Bürgerliste Weiterdenken',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/224'},
  'party_past': None,
  'education': None,
  'residence': 'Marburg',
  'occupation': 'Software-Entwickler',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180727,
  'entity_type': 'politician',
  'label': 'Vincent Welsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180727',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vincent-welsch',
  'first_name': 'Vincent',
  'last_name': 'Welsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Auszubildender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180726,
  'entity_type': 'politician',
  'label': 'Roman Bausch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180726',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-bausch',
  'first_name': 'Roman',
  'last_name': 'Bausch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Doctor of Philosophy (Economics) / Chula Univ. ',
  'residence': 'Wiesbaden',
  'occupation': 'Fraktionsreferent',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180725,
  'entity_type': 'politician',
  'label': 'Norbert Hansmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180725',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hansmann',
  'first_name': 'Norbert',
  'last_name': 'Hansmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180724,
  'entity_type': 'politician',
  'label': 'Gregory Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180724',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregory-scholz',
  'first_name': 'Gregory',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': 'Ludwigshafen-Oppau',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180723,
  'entity_type': 'politician',
  'label': 'Philipp Borgartz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180723',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-borgartz',
  'first_name': 'Philipp',
  'last_name': 'Borgartz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 89,
   'entity_type': 'party',
   'label': 'APPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/89'},
  'party_past': None,
  'education': 'Berufskraftfahrer',
  'residence': 'Darmstadt ',
  'occupation': 'Politiker ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180722,
  'entity_type': 'politician',
  'label': 'Andrea Rehwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180722',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-rehwald',
  'first_name': 'Andrea',
  'last_name': 'Rehwald',
  'birth_name': 'Eisenbeis',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Bürokaufmann',
  'residence': 'Merenberg',
  'occupation': 'Vertriebsmitarbeiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180721,
  'entity_type': 'politician',
  'label': 'Miriam Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180721',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-fuchs',
  'first_name': 'Miriam',
  'last_name': 'Fuchs',
  'birth_name': 'Schwarz',
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Japanologin',
  'residence': 'Taunusstein',
  'occupation': 'Sprachdienstleisterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180720,
  'entity_type': 'politician',
  'label': 'Simon Stratthaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180720',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-stratthaus',
  'first_name': 'Simon',
  'last_name': 'Stratthaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Industriemechaniker',
  'residence': 'Offenbach am Main',
  'occupation': 'Industriemechaniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180719,
  'entity_type': 'politician',
  'label': 'Iris Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-hofmann',
  'first_name': 'Iris',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180718,
  'entity_type': 'politician',
  'label': 'Norbert Höhl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180718',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hoehl',
  'first_name': 'Norbert',
  'last_name': 'Höhl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Petersberg',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180717,
  'entity_type': 'politician',
  'label': 'Edgar Winand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180717',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-winand',
  'first_name': 'Edgar',
  'last_name': 'Winand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Usingen',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180716,
  'entity_type': 'politician',
  'label': 'Alain Kaffo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180716',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alain-kaffo',
  'first_name': 'Alain',
  'last_name': 'Kaffo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Fulda',
  'occupation': 'IT-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180715,
  'entity_type': 'politician',
  'label': 'Ludwig Grünert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180715',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-gruenert',
  'first_name': 'Ludwig',
  'last_name': 'Grünert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Linden',
  'occupation': 'Notfallsanitäter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180714,
  'entity_type': 'politician',
  'label': 'David Adler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180714',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/david-adler',
  'first_name': 'David',
  'last_name': 'Adler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': 'Kinder- und Jugendreferent',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180713,
  'entity_type': 'politician',
  'label': 'Nadine Recker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180713',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadine-recker',
  'first_name': 'Nadine',
  'last_name': 'Recker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Arbeitslose',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180712,
  'entity_type': 'politician',
  'label': 'Susanne Stachon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180712',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-stachon',
  'first_name': 'Susanne',
  'last_name': 'Stachon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180711,
  'entity_type': 'politician',
  'label': 'Johanna Gomuloch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180711',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-gomuloch',
  'first_name': 'Johanna',
  'last_name': 'Gomuloch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180710,
  'entity_type': 'politician',
  'label': 'Adriano Holatz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adriano-holatz',
  'first_name': 'Adriano',
  'last_name': 'Holatz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180709,
  'entity_type': 'politician',
  'label': 'Jas Fink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180709',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jas-fink',
  'first_name': 'Jas',
  'last_name': 'Fink',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Coach für Teamentwicklung und Burnoutprävention',
  'residence': 'Planet Erde',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180708,
  'entity_type': 'politician',
  'label': 'Yvonne Machalett',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180708',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-machalett',
  'first_name': 'Yvonne',
  'last_name': 'Machalett',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180707,
  'entity_type': 'politician',
  'label': 'Sabine Relovsky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180707',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-relovsky',
  'first_name': 'Sabine',
  'last_name': 'Relovsky',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180706,
  'entity_type': 'politician',
  'label': 'Tanja Kretzschmar',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180706',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-kretzschmar',
  'first_name': 'Tanja',
  'last_name': 'Kretzschmar',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180705,
  'entity_type': 'politician',
  'label': 'Kornelia Elsner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180705',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kornelia-elsner',
  'first_name': 'Kornelia',
  'last_name': 'Elsner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180704,
  'entity_type': 'politician',
  'label': 'Wilhelm Hartl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180704',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilhelm-hartl',
  'first_name': 'Wilhelm',
  'last_name': 'Hartl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Geprüfter Wirtschaftsfachwirt (IHK)',
  'residence': 'Buttenwiesen',
  'occupation': 'aktuell arbeitsunfähig (Erwerbsminderungsrente)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180703,
  'entity_type': 'politician',
  'label': 'Natalie Brugger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-brugger',
  'first_name': 'Natalie',
  'last_name': 'Brugger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180702,
  'entity_type': 'politician',
  'label': 'Bernd Beigl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180702',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-beigl',
  'first_name': 'Bernd',
  'last_name': 'Beigl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180701,
  'entity_type': 'politician',
  'label': 'Daniel Probst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180701',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-probst',
  'first_name': 'Daniel',
  'last_name': 'Probst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Regensburg',
  'occupation': 'Finanzwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180700,
  'entity_type': 'politician',
  'label': 'Melanie Zeletzki',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180700',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-zeletzki',
  'first_name': 'Melanie',
  'last_name': 'Zeletzki',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180699,
  'entity_type': 'politician',
  'label': 'Carina Horner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180699',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-horner',
  'first_name': 'Carina',
  'last_name': 'Horner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': None,
  'occupation': 'Dozentin für Deutsch und Latein; Eselwanderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180698,
  'entity_type': 'politician',
  'label': 'Nina Veitengruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180698',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nina-veitengruber',
  'first_name': 'Nina',
  'last_name': 'Veitengruber',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180697,
  'entity_type': 'politician',
  'label': 'Dominik Maier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180697',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-maier',
  'first_name': 'Dominik',
  'last_name': 'Maier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Gärtner',
  'residence': 'Unterwattenbach',
  'occupation': 'Gärtner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180696,
  'entity_type': 'politician',
  'label': 'Marco Döring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180696',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-doering',
  'first_name': 'Marco',
  'last_name': 'Döring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180695,
  'entity_type': 'politician',
  'label': 'Benedikt Wieden',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180695',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-wieden',
  'first_name': 'Benedikt',
  'last_name': 'Wieden',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Anlagenmechaniker SHK',
  'residence': 'Traunreut',
  'occupation': 'Anlagenmechaniker für Sanitär, Heizungs- & Klimatechnik',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180694,
  'entity_type': 'politician',
  'label': 'Sabine Ipek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180694',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-ipek',
  'first_name': 'Sabine',
  'last_name': 'Ipek',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180693,
  'entity_type': 'politician',
  'label': 'Julia Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180693',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-vogt',
  'first_name': 'Julia',
  'last_name': 'Vogt',
  'birth_name': 'Vogt',
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Grundschullehramt',
  'residence': 'München',
  'occupation': 'Lernbegleiterin an Reformschule',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180692,
  'entity_type': 'politician',
  'label': 'Janina Bierwirth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180692',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janina-bierwirth',
  'first_name': 'Janina',
  'last_name': 'Bierwirth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180691,
  'entity_type': 'politician',
  'label': 'Tobias Förth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180691',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-foerth',
  'first_name': 'Tobias',
  'last_name': 'Förth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180690,
  'entity_type': 'politician',
  'label': 'Filomela Varisco-Zinz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180690',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/filomela-varisco-zinz',
  'first_name': 'Filomela',
  'last_name': 'Varisco-Zinz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180689,
  'entity_type': 'politician',
  'label': 'Sarah Neukirchen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180689',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-neukirchen',
  'first_name': 'Sarah',
  'last_name': 'Neukirchen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180688,
  'entity_type': 'politician',
  'label': 'Lukas Grötsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180688',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-groetsch',
  'first_name': 'Lukas',
  'last_name': 'Grötsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180687,
  'entity_type': 'politician',
  'label': 'Luis Böhling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180687',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luis-boehling',
  'first_name': 'Luis',
  'last_name': 'Böhling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Dorfen',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180686,
  'entity_type': 'politician',
  'label': 'Daniel Braun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180686',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-braun',
  'first_name': 'Daniel',
  'last_name': 'Braun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180685,
  'entity_type': 'politician',
  'label': 'Beata Misiewicz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180685',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beata-misiewicz',
  'first_name': 'Beata',
  'last_name': 'Misiewicz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180684,
  'entity_type': 'politician',
  'label': 'Christiane Briem',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180684',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-briem',
  'first_name': 'Christiane',
  'last_name': 'Briem',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'München ',
  'occupation': 'IT Systemanalytikerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180683,
  'entity_type': 'politician',
  'label': 'Cornelia Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180683',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-wiedorn',
  'first_name': 'Cornelia',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2002,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Fitnesstrainerin & Ernährungsberaterin',
  'residence': 'Gröbenzell',
  'occupation': 'Studentin & Kaufmännische Sachbearbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180682,
  'entity_type': 'politician',
  'label': 'Ronja Angermaier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180682',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronja-angermaier',
  'first_name': 'Ronja',
  'last_name': 'Angermaier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180681,
  'entity_type': 'politician',
  'label': 'Maximilian Schmauß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180681',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schmauss',
  'first_name': 'Maximilian',
  'last_name': 'Schmauß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180680,
  'entity_type': 'politician',
  'label': 'Harald Matzke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180680',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-matzke',
  'first_name': 'Harald',
  'last_name': 'Matzke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180679,
  'entity_type': 'politician',
  'label': 'Sonja Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180679',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-zacherl',
  'first_name': 'Sonja',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180678,
  'entity_type': 'politician',
  'label': 'Annika Kubitza',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180678',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annika-kubitza',
  'first_name': 'Annika',
  'last_name': 'Kubitza',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180677,
  'entity_type': 'politician',
  'label': 'Brigitte Hauschild',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180677',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-hauschild',
  'first_name': 'Brigitte',
  'last_name': 'Hauschild',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180676,
  'entity_type': 'politician',
  'label': 'Benjamin Mohrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180676',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-mohrich',
  'first_name': 'Benjamin',
  'last_name': 'Mohrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'UX Designer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180675,
  'entity_type': 'politician',
  'label': 'Tobias Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180675',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-wiedorn',
  'first_name': 'Tobias',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Gröbenzell',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180674,
  'entity_type': 'politician',
  'label': 'Felicitas Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180674',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felicitas-koch',
  'first_name': 'Felicitas',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180673,
  'entity_type': 'politician',
  'label': 'Anna Simon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180673',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-simon',
  'first_name': 'Anna',
  'last_name': 'Simon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180672,
  'entity_type': 'politician',
  'label': 'Korbinian Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180672',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/korbinian-zacherl',
  'first_name': 'Korbinian',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180671,
  'entity_type': 'politician',
  'label': 'Ralf Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180671',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-mueller-1',
  'first_name': 'Ralf',
  'last_name': 'Müller',
  'birth_name': 'Müller',
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Humanbiologe',
  'residence': '89250 Senden',
  'occupation': 'Forschung und Entwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180670,
  'entity_type': 'politician',
  'label': 'Ilona Christlmeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180670',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilona-christlmeier',
  'first_name': 'Ilona',
  'last_name': 'Christlmeier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'IT-Mitarbeiterin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180669,
  'entity_type': 'politician',
  'label': 'Markus Bach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180669',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-bach',
  'first_name': 'Markus',
  'last_name': 'Bach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180668,
  'entity_type': 'politician',
  'label': 'Margit Kiessling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180668',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/margit-kiessling',
  'first_name': 'Margit',
  'last_name': 'Kiessling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180667,
  'entity_type': 'politician',
  'label': 'Brigitte Tina',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180667',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-tina',
  'first_name': 'Brigitte',
  'last_name': 'Tina',
  'birth_name': 'Schimana',
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Medizinische Dokumentarin',
  'residence': 'Senden',
  'occupation': 'Rentnerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180666,
  'entity_type': 'politician',
  'label': 'Isabel Graumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180666',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-graumann',
  'first_name': 'Isabel',
  'last_name': 'Graumann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180665,
  'entity_type': 'politician',
  'label': 'Peter Knörzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180665',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-knoerzer',
  'first_name': 'Peter',
  'last_name': 'Knörzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': 'Horgau',
  'occupation': 'selbständiger Kaufmann',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180664,
  'entity_type': 'politician',
  'label': 'Benjamin Goßner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180664',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-gossner',
  'first_name': 'Benjamin',
  'last_name': 'Goßner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Gas- und Wasserinstallateur',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180663,
  'entity_type': 'politician',
  'label': 'Andreas Kahnt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180663',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kahnt',
  'first_name': 'Andreas',
  'last_name': 'Kahnt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom Ingenieur (FH)',
  'residence': 'Friedberg',
  'occupation': 'Linux Softwareentwickler',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180662,
  'entity_type': 'politician',
  'label': 'Erich Schenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180662',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-schenk',
  'first_name': 'Erich',
  'last_name': 'Schenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180661,
  'entity_type': 'politician',
  'label': 'Elmar Straube',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180661',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elmar-straube',
  'first_name': 'Elmar',
  'last_name': 'Straube',
  'birth_name': 'Elmar Sebastian Wolfgang Straube',
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Promotion in Schulpädagogik; Master of Education; Ausgebildeter Erlebnispädagoge; ',
  'residence': 'Augsburg',
  'occupation': 'Wissenchaftlicher Mitarbeiter und Dozent im Bereich Schulpädagogik; Erlebnispädagoge',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180660,
  'entity_type': 'politician',
  'label': 'Stefan Ruthard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180660',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ruthard',
  'first_name': 'Stefan',
  'last_name': 'Ruthard',
  'birth_name': 'Ruthard',
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Statlich geprüfter Techniker Fachrichtung Maschienenbau',
  'residence': 'Eltmann',
  'occupation': 'Angestellter Konstrukteur Sonderfahrzeugbau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180659,
  'entity_type': 'politician',
  'label': 'Ronny Grünewald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180659',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronny-gruenewald',
  'first_name': 'Ronny',
  'last_name': 'Grünewald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Techniker',
  'residence': 'Bergtheim',
  'occupation': 'Informatiker',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180658,
  'entity_type': 'politician',
  'label': 'Kamilla Meisenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180658',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kamilla-meisenberger',
  'first_name': 'Kamilla',
  'last_name': 'Meisenberger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]
len(data)
100

Parameter anpassen#

Anzahl der Ergebnisse erhöhen

url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?&range_end=1000'
response = requests.get(url)
data = response.json()['data']
data
[{'id': 180758,
  'entity_type': 'politician',
  'label': 'Cornelia von Loga',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-von-loga',
  'first_name': 'Cornelia',
  'last_name': 'von Loga',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Baden-Baden',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180757,
  'entity_type': 'politician',
  'label': 'Jens Münster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180757',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-muenster',
  'first_name': 'Jens',
  'last_name': 'Münster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180756,
  'entity_type': 'politician',
  'label': 'Sascha Herr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180756',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-herr',
  'first_name': 'Sascha',
  'last_name': 'Herr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 185,
   'entity_type': 'party',
   'label': 'parteilos',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
  'party_past': 'Sascha Herr ist am 27.10.2023 aus der AfD ausgetreten. Bei der Wahl zum Hessischen Landtag 2023 trat er auf Platz 27 der AfD Landesliste an und erlangte darüber sein Mandat. ',
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180755,
  'entity_type': 'politician',
  'label': 'Dennis Klecker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180755',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-klecker',
  'first_name': 'Dennis',
  'last_name': 'Klecker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Werkfeuerwehrmann',
  'residence': 'Ilsfeld',
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180754,
  'entity_type': 'politician',
  'label': 'Leo Puddu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180754',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leo-puddu',
  'first_name': 'Leo',
  'last_name': 'Puddu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Limburg',
  'occupation': 'Vertriebsmitarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180753,
  'entity_type': 'politician',
  'label': 'Matthias Lißmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180753',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-lissmann',
  'first_name': 'Matthias',
  'last_name': 'Lißmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Gauting',
  'occupation': 'Textilbetriebswirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180752,
  'entity_type': 'politician',
  'label': 'Michael Herber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180752',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-herber',
  'first_name': 'Michael',
  'last_name': 'Herber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Pfaffenhofen a.d.Ilm',
  'occupation': 'IT-Prozessmanager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180751,
  'entity_type': 'politician',
  'label': 'Gabriele Käsler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180751',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-kaesler',
  'first_name': 'Gabriele',
  'last_name': 'Käsler',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Königsmoos',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180750,
  'entity_type': 'politician',
  'label': 'Kilian Ponschab',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180750',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kilian-ponschab',
  'first_name': 'Kilian',
  'last_name': 'Ponschab',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Böhmfeld',
  'occupation': 'Industriemechaniker',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180749,
  'entity_type': 'politician',
  'label': 'Katharina Erdrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180749',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-erdrich',
  'first_name': 'Katharina',
  'last_name': 'Erdrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180748,
  'entity_type': 'politician',
  'label': 'Tobias Bauerfeind',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180748',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-bauerfeind',
  'first_name': 'Tobias',
  'last_name': 'Bauerfeind',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Mathematiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180747,
  'entity_type': 'politician',
  'label': 'Sercan Bünyamin Yolcu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180747',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sercan-buenyamin-yolcu',
  'first_name': 'Sercan Bünyamin',
  'last_name': 'Yolcu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Kempten',
  'occupation': 'Elektroniker',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180746,
  'entity_type': 'politician',
  'label': 'Anja Klingelhöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180746',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-klingelhoefer',
  'first_name': 'Anja',
  'last_name': 'Klingelhöfer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Ausbilderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180745,
  'entity_type': 'politician',
  'label': 'Stefan Bob Meitinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180745',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-bob-meitinger',
  'first_name': 'Stefan Bob',
  'last_name': 'Meitinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronom',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180744,
  'entity_type': 'politician',
  'label': 'Lisa McQueen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180744',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lisa-mcqueen',
  'first_name': 'Lisa',
  'last_name': 'McQueen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'Gastronomin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180743,
  'entity_type': 'politician',
  'label': 'Ingeborg Groebel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180743',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-groebel',
  'first_name': 'Ingeborg',
  'last_name': 'Groebel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Dipl.-Politologin',
  'residence': 'Wiesbaden',
  'occupation': 'Leiterin Bildungsbüro Stadt Wiesbaden ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180742,
  'entity_type': 'politician',
  'label': 'Elke Homm-Vogel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180742',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-homm-vogel',
  'first_name': 'Elke',
  'last_name': 'Homm-Vogel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Ansbach',
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180741,
  'entity_type': 'politician',
  'label': 'Martin Köppl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180741',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-koeppl',
  'first_name': 'Martin',
  'last_name': 'Köppl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Patentassessor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180740,
  'entity_type': 'politician',
  'label': 'Jürgen Euler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180740',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-euler',
  'first_name': 'Jürgen',
  'last_name': 'Euler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 227,
   'entity_type': 'party',
   'label': 'Praktiker Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/227'},
  'party_past': None,
  'education': None,
  'residence': 'Schwalmtal',
  'occupation': 'Landwirt',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180739,
  'entity_type': 'politician',
  'label': 'Mustfa Saleh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180739',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mustfa-saleh',
  'first_name': 'Mustfa',
  'last_name': 'Saleh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Student',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180738,
  'entity_type': 'politician',
  'label': 'Abdullhadi Husein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180738',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/abdullhadi-husein',
  'first_name': 'Abdullhadi',
  'last_name': 'Husein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 228,
   'entity_type': 'party',
   'label': 'Wählergruppe Solidaritätsbewegung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/228'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180737,
  'entity_type': 'politician',
  'label': 'Jürgen Menzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180737',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-menzel-0',
  'first_name': 'Jürgen',
  'last_name': 'Menzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Restaurantmanager',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180736,
  'entity_type': 'politician',
  'label': 'Manuela Ernst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180736',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-ernst',
  'first_name': 'Manuela',
  'last_name': 'Ernst',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180735,
  'entity_type': 'politician',
  'label': 'Norbert Taufertshöfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180735',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-taufertshoefer',
  'first_name': 'Norbert',
  'last_name': 'Taufertshöfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Heppenheim',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180734,
  'entity_type': 'politician',
  'label': 'Bernd Engemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180734',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-engemann',
  'first_name': 'Bernd',
  'last_name': 'Engemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Michelstadt',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180733,
  'entity_type': 'politician',
  'label': 'Steffen Beese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180733',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-beese',
  'first_name': 'Steffen',
  'last_name': 'Beese',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Elz',
  'occupation': 'Kupolofenwerker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180732,
  'entity_type': 'politician',
  'label': 'Gregor Ickert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180732',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregor-ickert',
  'first_name': 'Gregor',
  'last_name': 'Ickert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Meißner',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180730,
  'entity_type': 'politician',
  'label': 'Olaf Margraf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180730',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-margraf',
  'first_name': 'Olaf',
  'last_name': 'Margraf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 226,
   'entity_type': 'party',
   'label': 'Aktion Bürger für Gerechtigkeit',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/226'},
  'party_past': None,
  'education': None,
  'residence': 'Fulda',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180729,
  'entity_type': 'politician',
  'label': 'Evelyne Schuchmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180729',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/evelyne-schuchmann',
  'first_name': 'Evelyne',
  'last_name': 'Schuchmann',
  'birth_name': 'Müller',
  'sex': 'f',
  'year_of_birth': 1954,
  'party': {'id': 225,
   'entity_type': 'party',
   'label': 'SGV Partei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/225'},
  'party_past': None,
  'education': 'Verwaltungsangestellte',
  'residence': '64560 Riedstadt',
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180728,
  'entity_type': 'politician',
  'label': 'Frank Michler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180728',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-michler',
  'first_name': 'Frank',
  'last_name': 'Michler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 224,
   'entity_type': 'party',
   'label': 'Bürgerliste Weiterdenken',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/224'},
  'party_past': None,
  'education': None,
  'residence': 'Marburg',
  'occupation': 'Software-Entwickler',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180727,
  'entity_type': 'politician',
  'label': 'Vincent Welsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180727',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vincent-welsch',
  'first_name': 'Vincent',
  'last_name': 'Welsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Auszubildender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180726,
  'entity_type': 'politician',
  'label': 'Roman Bausch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180726',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-bausch',
  'first_name': 'Roman',
  'last_name': 'Bausch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Doctor of Philosophy (Economics) / Chula Univ. ',
  'residence': 'Wiesbaden',
  'occupation': 'Fraktionsreferent',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180725,
  'entity_type': 'politician',
  'label': 'Norbert Hansmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180725',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hansmann',
  'first_name': 'Norbert',
  'last_name': 'Hansmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180724,
  'entity_type': 'politician',
  'label': 'Gregory Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180724',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregory-scholz',
  'first_name': 'Gregory',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': 'Ludwigshafen-Oppau',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180723,
  'entity_type': 'politician',
  'label': 'Philipp Borgartz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180723',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-borgartz',
  'first_name': 'Philipp',
  'last_name': 'Borgartz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 89,
   'entity_type': 'party',
   'label': 'APPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/89'},
  'party_past': None,
  'education': 'Berufskraftfahrer',
  'residence': 'Darmstadt ',
  'occupation': 'Politiker ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180722,
  'entity_type': 'politician',
  'label': 'Andrea Rehwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180722',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-rehwald',
  'first_name': 'Andrea',
  'last_name': 'Rehwald',
  'birth_name': 'Eisenbeis',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Bürokaufmann',
  'residence': 'Merenberg',
  'occupation': 'Vertriebsmitarbeiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180721,
  'entity_type': 'politician',
  'label': 'Miriam Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180721',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-fuchs',
  'first_name': 'Miriam',
  'last_name': 'Fuchs',
  'birth_name': 'Schwarz',
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Japanologin',
  'residence': 'Taunusstein',
  'occupation': 'Sprachdienstleisterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180720,
  'entity_type': 'politician',
  'label': 'Simon Stratthaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180720',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-stratthaus',
  'first_name': 'Simon',
  'last_name': 'Stratthaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Industriemechaniker',
  'residence': 'Offenbach am Main',
  'occupation': 'Industriemechaniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180719,
  'entity_type': 'politician',
  'label': 'Iris Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-hofmann',
  'first_name': 'Iris',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180718,
  'entity_type': 'politician',
  'label': 'Norbert Höhl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180718',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-hoehl',
  'first_name': 'Norbert',
  'last_name': 'Höhl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Petersberg',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180717,
  'entity_type': 'politician',
  'label': 'Edgar Winand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180717',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-winand',
  'first_name': 'Edgar',
  'last_name': 'Winand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Usingen',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180716,
  'entity_type': 'politician',
  'label': 'Alain Kaffo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180716',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alain-kaffo',
  'first_name': 'Alain',
  'last_name': 'Kaffo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Fulda',
  'occupation': 'IT-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180715,
  'entity_type': 'politician',
  'label': 'Ludwig Grünert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180715',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-gruenert',
  'first_name': 'Ludwig',
  'last_name': 'Grünert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Linden',
  'occupation': 'Notfallsanitäter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180714,
  'entity_type': 'politician',
  'label': 'David Adler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180714',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/david-adler',
  'first_name': 'David',
  'last_name': 'Adler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 82,
   'entity_type': 'party',
   'label': 'Bündnis C',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/82'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': 'Kinder- und Jugendreferent',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180713,
  'entity_type': 'politician',
  'label': 'Nadine Recker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180713',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadine-recker',
  'first_name': 'Nadine',
  'last_name': 'Recker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Arbeitslose',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180712,
  'entity_type': 'politician',
  'label': 'Susanne Stachon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180712',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-stachon',
  'first_name': 'Susanne',
  'last_name': 'Stachon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180711,
  'entity_type': 'politician',
  'label': 'Johanna Gomuloch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180711',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-gomuloch',
  'first_name': 'Johanna',
  'last_name': 'Gomuloch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180710,
  'entity_type': 'politician',
  'label': 'Adriano Holatz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adriano-holatz',
  'first_name': 'Adriano',
  'last_name': 'Holatz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180709,
  'entity_type': 'politician',
  'label': 'Jas Fink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180709',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jas-fink',
  'first_name': 'Jas',
  'last_name': 'Fink',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Coach für Teamentwicklung und Burnoutprävention',
  'residence': 'Planet Erde',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180708,
  'entity_type': 'politician',
  'label': 'Yvonne Machalett',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180708',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-machalett',
  'first_name': 'Yvonne',
  'last_name': 'Machalett',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180707,
  'entity_type': 'politician',
  'label': 'Sabine Relovsky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180707',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-relovsky',
  'first_name': 'Sabine',
  'last_name': 'Relovsky',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180706,
  'entity_type': 'politician',
  'label': 'Tanja Kretzschmar',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180706',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-kretzschmar',
  'first_name': 'Tanja',
  'last_name': 'Kretzschmar',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180705,
  'entity_type': 'politician',
  'label': 'Kornelia Elsner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180705',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kornelia-elsner',
  'first_name': 'Kornelia',
  'last_name': 'Elsner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180704,
  'entity_type': 'politician',
  'label': 'Wilhelm Hartl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180704',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilhelm-hartl',
  'first_name': 'Wilhelm',
  'last_name': 'Hartl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Geprüfter Wirtschaftsfachwirt (IHK)',
  'residence': 'Buttenwiesen',
  'occupation': 'aktuell arbeitsunfähig (Erwerbsminderungsrente)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180703,
  'entity_type': 'politician',
  'label': 'Natalie Brugger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-brugger',
  'first_name': 'Natalie',
  'last_name': 'Brugger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180702,
  'entity_type': 'politician',
  'label': 'Bernd Beigl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180702',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-beigl',
  'first_name': 'Bernd',
  'last_name': 'Beigl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180701,
  'entity_type': 'politician',
  'label': 'Daniel Probst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180701',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-probst',
  'first_name': 'Daniel',
  'last_name': 'Probst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Regensburg',
  'occupation': 'Finanzwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180700,
  'entity_type': 'politician',
  'label': 'Melanie Zeletzki',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180700',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-zeletzki',
  'first_name': 'Melanie',
  'last_name': 'Zeletzki',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180699,
  'entity_type': 'politician',
  'label': 'Carina Horner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180699',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-horner',
  'first_name': 'Carina',
  'last_name': 'Horner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': None,
  'occupation': 'Dozentin für Deutsch und Latein; Eselwanderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180698,
  'entity_type': 'politician',
  'label': 'Nina Veitengruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180698',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nina-veitengruber',
  'first_name': 'Nina',
  'last_name': 'Veitengruber',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180697,
  'entity_type': 'politician',
  'label': 'Dominik Maier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180697',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-maier',
  'first_name': 'Dominik',
  'last_name': 'Maier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Gärtner',
  'residence': 'Unterwattenbach',
  'occupation': 'Gärtner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180696,
  'entity_type': 'politician',
  'label': 'Marco Döring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180696',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-doering',
  'first_name': 'Marco',
  'last_name': 'Döring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180695,
  'entity_type': 'politician',
  'label': 'Benedikt Wieden',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180695',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-wieden',
  'first_name': 'Benedikt',
  'last_name': 'Wieden',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Anlagenmechaniker SHK',
  'residence': 'Traunreut',
  'occupation': 'Anlagenmechaniker für Sanitär, Heizungs- & Klimatechnik',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180694,
  'entity_type': 'politician',
  'label': 'Sabine Ipek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180694',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-ipek',
  'first_name': 'Sabine',
  'last_name': 'Ipek',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180693,
  'entity_type': 'politician',
  'label': 'Julia Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180693',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-vogt',
  'first_name': 'Julia',
  'last_name': 'Vogt',
  'birth_name': 'Vogt',
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Grundschullehramt',
  'residence': 'München',
  'occupation': 'Lernbegleiterin an Reformschule',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180692,
  'entity_type': 'politician',
  'label': 'Janina Bierwirth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180692',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janina-bierwirth',
  'first_name': 'Janina',
  'last_name': 'Bierwirth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180691,
  'entity_type': 'politician',
  'label': 'Tobias Förth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180691',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-foerth',
  'first_name': 'Tobias',
  'last_name': 'Förth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180690,
  'entity_type': 'politician',
  'label': 'Filomela Varisco-Zinz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180690',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/filomela-varisco-zinz',
  'first_name': 'Filomela',
  'last_name': 'Varisco-Zinz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180689,
  'entity_type': 'politician',
  'label': 'Sarah Neukirchen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180689',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-neukirchen',
  'first_name': 'Sarah',
  'last_name': 'Neukirchen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180688,
  'entity_type': 'politician',
  'label': 'Lukas Grötsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180688',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-groetsch',
  'first_name': 'Lukas',
  'last_name': 'Grötsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180687,
  'entity_type': 'politician',
  'label': 'Luis Böhling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180687',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luis-boehling',
  'first_name': 'Luis',
  'last_name': 'Böhling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Dorfen',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180686,
  'entity_type': 'politician',
  'label': 'Daniel Braun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180686',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-braun',
  'first_name': 'Daniel',
  'last_name': 'Braun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180685,
  'entity_type': 'politician',
  'label': 'Beata Misiewicz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180685',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beata-misiewicz',
  'first_name': 'Beata',
  'last_name': 'Misiewicz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180684,
  'entity_type': 'politician',
  'label': 'Christiane Briem',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180684',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-briem',
  'first_name': 'Christiane',
  'last_name': 'Briem',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'München ',
  'occupation': 'IT Systemanalytikerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180683,
  'entity_type': 'politician',
  'label': 'Cornelia Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180683',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-wiedorn',
  'first_name': 'Cornelia',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2002,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': 'Fitnesstrainerin & Ernährungsberaterin',
  'residence': 'Gröbenzell',
  'occupation': 'Studentin & Kaufmännische Sachbearbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180682,
  'entity_type': 'politician',
  'label': 'Ronja Angermaier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180682',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronja-angermaier',
  'first_name': 'Ronja',
  'last_name': 'Angermaier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180681,
  'entity_type': 'politician',
  'label': 'Maximilian Schmauß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180681',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schmauss',
  'first_name': 'Maximilian',
  'last_name': 'Schmauß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180680,
  'entity_type': 'politician',
  'label': 'Harald Matzke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180680',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-matzke',
  'first_name': 'Harald',
  'last_name': 'Matzke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180679,
  'entity_type': 'politician',
  'label': 'Sonja Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180679',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-zacherl',
  'first_name': 'Sonja',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180678,
  'entity_type': 'politician',
  'label': 'Annika Kubitza',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180678',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annika-kubitza',
  'first_name': 'Annika',
  'last_name': 'Kubitza',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180677,
  'entity_type': 'politician',
  'label': 'Brigitte Hauschild',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180677',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-hauschild',
  'first_name': 'Brigitte',
  'last_name': 'Hauschild',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180676,
  'entity_type': 'politician',
  'label': 'Benjamin Mohrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180676',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-mohrich',
  'first_name': 'Benjamin',
  'last_name': 'Mohrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'UX Designer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180675,
  'entity_type': 'politician',
  'label': 'Tobias Wiedorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180675',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-wiedorn',
  'first_name': 'Tobias',
  'last_name': 'Wiedorn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': 'Gröbenzell',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180674,
  'entity_type': 'politician',
  'label': 'Felicitas Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180674',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felicitas-koch',
  'first_name': 'Felicitas',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180673,
  'entity_type': 'politician',
  'label': 'Anna Simon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180673',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-simon',
  'first_name': 'Anna',
  'last_name': 'Simon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180672,
  'entity_type': 'politician',
  'label': 'Korbinian Zacherl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180672',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/korbinian-zacherl',
  'first_name': 'Korbinian',
  'last_name': 'Zacherl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 168,
   'entity_type': 'party',
   'label': 'V-Partei³',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/168'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180671,
  'entity_type': 'politician',
  'label': 'Ralf Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180671',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-mueller-1',
  'first_name': 'Ralf',
  'last_name': 'Müller',
  'birth_name': 'Müller',
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Humanbiologe',
  'residence': '89250 Senden',
  'occupation': 'Forschung und Entwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180670,
  'entity_type': 'politician',
  'label': 'Ilona Christlmeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180670',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilona-christlmeier',
  'first_name': 'Ilona',
  'last_name': 'Christlmeier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'IT-Mitarbeiterin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180669,
  'entity_type': 'politician',
  'label': 'Markus Bach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180669',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-bach',
  'first_name': 'Markus',
  'last_name': 'Bach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180668,
  'entity_type': 'politician',
  'label': 'Margit Kiessling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180668',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/margit-kiessling',
  'first_name': 'Margit',
  'last_name': 'Kiessling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180667,
  'entity_type': 'politician',
  'label': 'Brigitte Tina',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180667',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-tina',
  'first_name': 'Brigitte',
  'last_name': 'Tina',
  'birth_name': 'Schimana',
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Medizinische Dokumentarin',
  'residence': 'Senden',
  'occupation': 'Rentnerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180666,
  'entity_type': 'politician',
  'label': 'Isabel Graumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180666',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-graumann',
  'first_name': 'Isabel',
  'last_name': 'Graumann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180665,
  'entity_type': 'politician',
  'label': 'Peter Knörzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180665',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-knoerzer',
  'first_name': 'Peter',
  'last_name': 'Knörzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': 'Horgau',
  'occupation': 'selbständiger Kaufmann',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180664,
  'entity_type': 'politician',
  'label': 'Benjamin Goßner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180664',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-gossner',
  'first_name': 'Benjamin',
  'last_name': 'Goßner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Gas- und Wasserinstallateur',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180663,
  'entity_type': 'politician',
  'label': 'Andreas Kahnt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180663',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kahnt',
  'first_name': 'Andreas',
  'last_name': 'Kahnt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom Ingenieur (FH)',
  'residence': 'Friedberg',
  'occupation': 'Linux Softwareentwickler',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180662,
  'entity_type': 'politician',
  'label': 'Erich Schenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180662',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-schenk',
  'first_name': 'Erich',
  'last_name': 'Schenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180661,
  'entity_type': 'politician',
  'label': 'Elmar Straube',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180661',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elmar-straube',
  'first_name': 'Elmar',
  'last_name': 'Straube',
  'birth_name': 'Elmar Sebastian Wolfgang Straube',
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Promotion in Schulpädagogik; Master of Education; Ausgebildeter Erlebnispädagoge; ',
  'residence': 'Augsburg',
  'occupation': 'Wissenchaftlicher Mitarbeiter und Dozent im Bereich Schulpädagogik; Erlebnispädagoge',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180660,
  'entity_type': 'politician',
  'label': 'Stefan Ruthard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180660',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ruthard',
  'first_name': 'Stefan',
  'last_name': 'Ruthard',
  'birth_name': 'Ruthard',
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Statlich geprüfter Techniker Fachrichtung Maschienenbau',
  'residence': 'Eltmann',
  'occupation': 'Angestellter Konstrukteur Sonderfahrzeugbau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180659,
  'entity_type': 'politician',
  'label': 'Ronny Grünewald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180659',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronny-gruenewald',
  'first_name': 'Ronny',
  'last_name': 'Grünewald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Techniker',
  'residence': 'Bergtheim',
  'occupation': 'Informatiker',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180658,
  'entity_type': 'politician',
  'label': 'Kamilla Meisenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180658',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kamilla-meisenberger',
  'first_name': 'Kamilla',
  'last_name': 'Meisenberger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180657,
  'entity_type': 'politician',
  'label': 'Franz Bachmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180657',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-bachmann',
  'first_name': 'Franz',
  'last_name': 'Bachmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180656,
  'entity_type': 'politician',
  'label': 'Holger Klug',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180656',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-klug',
  'first_name': 'Holger',
  'last_name': 'Klug',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180655,
  'entity_type': 'politician',
  'label': 'Gabriele Wittrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180655',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-wittrich',
  'first_name': 'Gabriele',
  'last_name': 'Wittrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180654,
  'entity_type': 'politician',
  'label': 'Ulrike Kämmerer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180654',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrike-kaemmerer',
  'first_name': 'Ulrike',
  'last_name': 'Kämmerer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180652,
  'entity_type': 'politician',
  'label': 'Roman Gnoth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180652',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-gnoth',
  'first_name': 'Roman',
  'last_name': 'Gnoth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180651,
  'entity_type': 'politician',
  'label': 'Andreas Macher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180651',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-macher',
  'first_name': 'Andreas',
  'last_name': 'Macher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Softwareingenieur M. Eng.',
  'residence': 'Erlangen',
  'occupation': 'Schriftführer Kreisverband Fürth',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180650,
  'entity_type': 'politician',
  'label': 'Wolfgang Bosswick',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180650',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-bosswick',
  'first_name': 'Wolfgang',
  'last_name': 'Bosswick',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom-Sozialwirt (Universität Erlangen/Nürnberg)',
  'residence': 'Erlangen',
  'occupation': 'Freiberufler / Dipl. Sozialwirt (Uni)',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180649,
  'entity_type': 'politician',
  'label': 'Daniela Pülhorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180649',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniela-puelhorn',
  'first_name': 'Daniela',
  'last_name': 'Pülhorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180648,
  'entity_type': 'politician',
  'label': 'Ulrich Schild von Spannenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180648',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrich-schild-von-spannenberg',
  'first_name': 'Ulrich',
  'last_name': 'Schild von Spannenberg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Weißenburg i.B.',
  'occupation': 'selbständiger Unternehmensberater und Honorarberater',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180647,
  'entity_type': 'politician',
  'label': 'Roland Krollikowsky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180647',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-krollikowsky',
  'first_name': 'Roland',
  'last_name': 'Krollikowsky',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180646,
  'entity_type': 'politician',
  'label': 'Alexander Brosien',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180646',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-brosien',
  'first_name': 'Alexander',
  'last_name': 'Brosien',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Nürnberg',
  'occupation': 'technischer Modellbauer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180645,
  'entity_type': 'politician',
  'label': 'Sandra Güldenfuß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180645',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-gueldenfuss',
  'first_name': 'Sandra',
  'last_name': 'Güldenfuß',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Schwabach',
  'occupation': 'Selbstständige Softwareentwicklerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180644,
  'entity_type': 'politician',
  'label': 'Reiner Schindler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180644',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reiner-schindler',
  'first_name': 'Reiner',
  'last_name': 'Schindler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180643,
  'entity_type': 'politician',
  'label': 'Corell Wex',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180643',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/corell-wex',
  'first_name': 'Corell',
  'last_name': 'Wex',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180642,
  'entity_type': 'politician',
  'label': 'Christian Amann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180642',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-amann',
  'first_name': 'Christian',
  'last_name': 'Amann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Diplomwirtschaftsingenieur',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180641,
  'entity_type': 'politician',
  'label': 'Karsten Thamm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180641',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karsten-thamm',
  'first_name': 'Karsten',
  'last_name': 'Thamm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Gerbrunn',
  'occupation': 'Softwareentwickler seit 2000, ',
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180640,
  'entity_type': 'politician',
  'label': 'Angelika Linhart',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180640',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/angelika-linhart',
  'first_name': 'Angelika',
  'last_name': 'Linhart',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180639,
  'entity_type': 'politician',
  'label': 'Willy Künzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180639',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/willy-kuenzel',
  'first_name': 'Willy',
  'last_name': 'Künzel',
  'birth_name': 'Künzel',
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplomgeograph',
  'residence': 'Bamberg',
  'occupation': 'Selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180638,
  'entity_type': 'politician',
  'label': 'Uwe Stark',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180638',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-stark',
  'first_name': 'Uwe',
  'last_name': 'Stark',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Maroldsweisach',
  'occupation': 'Elektrofachkraft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180637,
  'entity_type': 'politician',
  'label': 'Sonja Schuhmacher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180637',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-schuhmacher-0',
  'first_name': 'Sonja',
  'last_name': 'Schuhmacher',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180636,
  'entity_type': 'politician',
  'label': 'Wolfgang Rosner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180636',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-rosner',
  'first_name': 'Wolfgang',
  'last_name': 'Rosner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Dipl.-Ing. agr. (FH), MBA (Univ Bradford)',
  'residence': 'Pleußen bei Mitterteich',
  'occupation': 'Biobauer',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180635,
  'entity_type': 'politician',
  'label': 'Claudio Stoiber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180635',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudio-stoiber',
  'first_name': 'Claudio',
  'last_name': 'Stoiber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Schwarzenfeld',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180634,
  'entity_type': 'politician',
  'label': 'Arpad Grieshaber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180634',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/arpad-grieshaber',
  'first_name': 'Arpad',
  'last_name': 'Grieshaber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180633,
  'entity_type': 'politician',
  'label': 'Josef Hübl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-huebl',
  'first_name': 'Josef',
  'last_name': 'Hübl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom-Mathematiker',
  'residence': None,
  'occupation': 'selbständiger Software-Ingenieur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180632,
  'entity_type': 'politician',
  'label': 'Michael Klement',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180632',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-klement',
  'first_name': 'Michael',
  'last_name': 'Klement',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180631,
  'entity_type': 'politician',
  'label': 'Hans Märkl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180631',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-maerkl',
  'first_name': 'Hans',
  'last_name': 'Märkl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Lebensmittelverarbeitungstechniker',
  'residence': '92253 Schnaittenbach',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180630,
  'entity_type': 'politician',
  'label': 'Klaus Neutzner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180630',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-neutzner',
  'first_name': 'Klaus',
  'last_name': 'Neutzner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180629,
  'entity_type': 'politician',
  'label': 'Rainer Krokisius',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180629',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-krokisius',
  'first_name': 'Rainer',
  'last_name': 'Krokisius',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180628,
  'entity_type': 'politician',
  'label': 'Franziska Hess',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180628',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franziska-hess',
  'first_name': 'Franziska',
  'last_name': 'Hess',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180627,
  'entity_type': 'politician',
  'label': 'Wolfgang Seitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180627',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-seitz-0',
  'first_name': 'Wolfgang',
  'last_name': 'Seitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180626,
  'entity_type': 'politician',
  'label': 'Peggy Galic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180626',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peggy-galic',
  'first_name': 'Peggy',
  'last_name': 'Galic',
  'birth_name': 'Niproschke',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Rosenheim',
  'occupation': 'Angestellte im Gesundheitswesen',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180625,
  'entity_type': 'politician',
  'label': 'Veronika Herwegh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180625',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/veronika-herwegh',
  'first_name': 'Veronika',
  'last_name': 'Herwegh',
  'birth_name': 'Thäle',
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Damenschneiderin, Studium Mode-Design',
  'residence': 'Halfing',
  'occupation': 'Mode-Designerin',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180624,
  'entity_type': 'politician',
  'label': 'Stefan Kohwagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180624',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-kohwagner',
  'first_name': 'Stefan',
  'last_name': 'Kohwagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180623,
  'entity_type': 'politician',
  'label': 'Udo Kappelmaier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180623',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/udo-kappelmaier',
  'first_name': 'Udo',
  'last_name': 'Kappelmaier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom-Ingenieur, Diplom-Wirtschaftingenieur',
  'residence': 'Ismaning',
  'occupation': 'Consultant',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180622,
  'entity_type': 'politician',
  'label': 'Edgar Siemund',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180622',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-siemund',
  'first_name': 'Edgar',
  'last_name': 'Siemund',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180621,
  'entity_type': 'politician',
  'label': 'Josef Oppenrieder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180621',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-oppenrieder',
  'first_name': 'Josef',
  'last_name': 'Oppenrieder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180620,
  'entity_type': 'politician',
  'label': 'Richard Salfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180620',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/richard-salfer',
  'first_name': 'Richard',
  'last_name': 'Salfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180619,
  'entity_type': 'politician',
  'label': 'Klaus Schwarz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180619',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-schwarz',
  'first_name': 'Klaus',
  'last_name': 'Schwarz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180618,
  'entity_type': 'politician',
  'label': 'Olaf Morlock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180618',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-morlock',
  'first_name': 'Olaf',
  'last_name': 'Morlock',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Senior Information Security Manager',
  'residence': 'Gröbenzell',
  'occupation': 'IT-Berater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180617,
  'entity_type': 'politician',
  'label': 'Anne Werkmeister',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180617',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-werkmeister',
  'first_name': 'Anne',
  'last_name': 'Werkmeister',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180616,
  'entity_type': 'politician',
  'label': 'Klaus Hengl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180616',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-hengl',
  'first_name': 'Klaus',
  'last_name': 'Hengl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180615,
  'entity_type': 'politician',
  'label': 'Johanna Wassylischin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180615',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-wassylischin',
  'first_name': 'Johanna',
  'last_name': 'Wassylischin',
  'birth_name': 'Johanna Wassylischin',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Pflegefachhelferin',
  'residence': 'Zorneding',
  'occupation': 'Pflegefachhelferin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180614,
  'entity_type': 'politician',
  'label': 'Michael Briechle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180614',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-briechle',
  'first_name': 'Michael',
  'last_name': 'Briechle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180613,
  'entity_type': 'politician',
  'label': 'Hans Schiffbahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180613',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-schiffbahn',
  'first_name': 'Hans',
  'last_name': 'Schiffbahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Vertriebsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180612,
  'entity_type': 'politician',
  'label': 'Tomas Langhorst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180612',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tomas-langhorst',
  'first_name': 'Tomas',
  'last_name': 'Langhorst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180611,
  'entity_type': 'politician',
  'label': 'Michael Schürer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180611',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-schuerer',
  'first_name': 'Michael',
  'last_name': 'Schürer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180610,
  'entity_type': 'politician',
  'label': 'Uli Reimer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180610',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uli-reimer',
  'first_name': 'Uli',
  'last_name': 'Reimer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180609,
  'entity_type': 'politician',
  'label': 'Leander Hartmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180609',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leander-hartmann',
  'first_name': 'Leander',
  'last_name': 'Hartmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1950,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Gesellenbrief',
  'residence': 'München',
  'occupation': 'Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180608,
  'entity_type': 'politician',
  'label': 'Ioannis Katsigiannis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180608',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ioannis-katsigiannis',
  'first_name': 'Ioannis',
  'last_name': 'Katsigiannis',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180607,
  'entity_type': 'politician',
  'label': 'Ulrike Schiemenz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180607',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrike-schiemenz',
  'first_name': 'Ulrike',
  'last_name': 'Schiemenz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180606,
  'entity_type': 'politician',
  'label': 'Firas Abdellatif',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180606',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/firas-abdellatif',
  'first_name': 'Firas',
  'last_name': 'Abdellatif',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180605,
  'entity_type': 'politician',
  'label': 'Irmgard Ulmeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180605',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/irmgard-ulmeier',
  'first_name': 'Irmgard',
  'last_name': 'Ulmeier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Neu-Ulm',
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180604,
  'entity_type': 'politician',
  'label': 'Eva-Maria Altemöller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180604',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-maria-altemoeller',
  'first_name': 'Eva-Maria',
  'last_name': 'Altemöller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1957,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Dolmetscherin',
  'residence': 'Lindau',
  'occupation': 'Buchhändlerin/Schriftstellerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180603,
  'entity_type': 'politician',
  'label': 'Christoph Meiler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180603',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-meiler',
  'first_name': 'Christoph',
  'last_name': 'Meiler',
  'birth_name': 'Meiler',
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Maschinenbautechniker',
  'residence': 'Kempten',
  'occupation': 'Elektroniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180602,
  'entity_type': 'politician',
  'label': 'Petra Mehrer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180602',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/petra-mehrer',
  'first_name': 'Petra',
  'last_name': 'Mehrer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Schmiechen',
  'occupation': 'Erzieherin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180601,
  'entity_type': 'politician',
  'label': 'Natalie Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180601',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-schmidt',
  'first_name': 'Natalie',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Großostheim',
  'occupation': 'Verkäuferin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180600,
  'entity_type': 'politician',
  'label': 'Heidi Hierl-Schulze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180600',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heidi-hierl-schulze',
  'first_name': 'Heidi',
  'last_name': 'Hierl-Schulze',
  'birth_name': 'Hierl ',
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Sekretärin',
  'residence': 'Wendelstein',
  'occupation': 'Rentnerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180599,
  'entity_type': 'politician',
  'label': 'Sabine Meusel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180599',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-meusel',
  'first_name': 'Sabine',
  'last_name': 'Meusel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Forchheim',
  'occupation': 'Physiotherapeutin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180598,
  'entity_type': 'politician',
  'label': 'Samantha Reinisch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180598',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/samantha-reinisch',
  'first_name': 'Samantha',
  'last_name': 'Reinisch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Bayreuth',
  'occupation': 'Bauzeichnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180597,
  'entity_type': 'politician',
  'label': 'Barbara Meissner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180597',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-meissner',
  'first_name': 'Barbara',
  'last_name': 'Meissner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Pädagogin',
  'residence': None,
  'occupation': 'Büroleitung Erwachsenenbildung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180596,
  'entity_type': 'politician',
  'label': 'Gabi Hermann-Kollig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180596',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabi-hermann-kollig',
  'first_name': 'Gabi',
  'last_name': 'Hermann-Kollig',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Langdorf',
  'occupation': 'Krankenschwester',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180595,
  'entity_type': 'politician',
  'label': 'Gregor Schulze- Hädrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180595',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gregor-schulze-haedrich',
  'first_name': 'Gregor',
  'last_name': 'Schulze- Hädrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Sport- und Fitnesstrainer i.A.',
  'residence': 'Weilheim',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180594,
  'entity_type': 'politician',
  'label': 'Christina Kreidemeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180594',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christina-kreidemeier',
  'first_name': 'Christina',
  'last_name': 'Kreidemeier',
  'birth_name': 'Kreidemeier',
  'sex': 'f',
  'year_of_birth': 1998,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Tierärztin',
  'residence': 'München',
  'occupation': 'Tierärztin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180593,
  'entity_type': 'politician',
  'label': 'Peter Steyrer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180593',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-steyrer',
  'first_name': 'Peter',
  'last_name': 'Steyrer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Dipl.-Betriebswirt (FH)',
  'residence': 'Tuntenhausen',
  'occupation': 'Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180592,
  'entity_type': 'politician',
  'label': 'Andrea Povolny',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180592',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-povolny',
  'first_name': 'Andrea',
  'last_name': 'Povolny',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Rosenheim',
  'occupation': 'Sozialarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180591,
  'entity_type': 'politician',
  'label': 'Gabriele Lachner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180591',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-lachner',
  'first_name': 'Gabriele',
  'last_name': 'Lachner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Dipl-Psychologin',
  'residence': 'München',
  'occupation': 'Psychotherapeutin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180590,
  'entity_type': 'politician',
  'label': 'Nathalie Eder-John',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180590',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nathalie-eder-john',
  'first_name': 'Nathalie',
  'last_name': 'Eder-John',
  'birth_name': 'John',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Fremdsprachenkorrespondentin',
  'residence': 'Pürgen',
  'occupation': 'Assistentin der Geschäftsleitung',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180589,
  'entity_type': 'politician',
  'label': 'Claus-Jürgen Fink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180589',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claus-juergen-fink',
  'first_name': 'Claus-Jürgen',
  'last_name': 'Fink',
  'birth_name': 'Fink',
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Gerolsbach',
  'occupation': 'Sozialpädagoge',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180588,
  'entity_type': 'politician',
  'label': 'Sandra Heinrichs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180588',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-heinrichs',
  'first_name': 'Sandra',
  'last_name': 'Heinrichs',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'Langenbach',
  'occupation': 'Assistentin der Geschäftsführung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180587,
  'entity_type': 'politician',
  'label': 'Stephan Schwolow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180587',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-schwolow',
  'first_name': 'Stephan',
  'last_name': 'Schwolow',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Germanist M.A.',
  'residence': 'Vaterstetten',
  'occupation': 'PR-Berater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180586,
  'entity_type': 'politician',
  'label': 'Andreas Zeidler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180586',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-zeidler',
  'first_name': 'Andreas',
  'last_name': 'Zeidler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': 'München',
  'occupation': 'Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180585,
  'entity_type': 'politician',
  'label': 'Anita Sellner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180585',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anita-sellner',
  'first_name': 'Anita',
  'last_name': 'Sellner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Versicherungsfachwirtin',
  'residence': 'Töging am Inn',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180584,
  'entity_type': 'politician',
  'label': 'Anita Wandinger-Nolen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180584',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anita-wandinger-nolen',
  'first_name': 'Anita',
  'last_name': 'Wandinger-Nolen',
  'birth_name': 'Wandinger',
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Wirtschaftspsychologin M.Sc.',
  'residence': 'München',
  'occupation': 'Hotelierin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180583,
  'entity_type': 'politician',
  'label': 'Ralf Krämer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180583',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-kraemer',
  'first_name': 'Ralf',
  'last_name': 'Krämer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Medienproduzent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180582,
  'entity_type': 'politician',
  'label': 'Michael Holzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180582',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-holzer',
  'first_name': 'Michael',
  'last_name': 'Holzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Bürokaufmann',
  'residence': 'München',
  'occupation': 'Personalsachbearbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180581,
  'entity_type': 'politician',
  'label': 'Reinhild Löbrich- Mannhart',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180581',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reinhild-loebrich-mannhart',
  'first_name': 'Reinhild',
  'last_name': 'Löbrich- Mannhart',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Erzieherin',
  'residence': 'München',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180580,
  'entity_type': 'politician',
  'label': 'Andrea Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180580',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-mueller',
  'first_name': 'Andrea',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Ethnologin;Soziologin',
  'residence': 'München',
  'occupation': 'Hausverwalterin; Naturpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180578,
  'entity_type': 'politician',
  'label': 'Stephan Pühler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180578',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-puehler',
  'first_name': 'Stephan',
  'last_name': 'Pühler',
  'birth_name': 'Pühler',
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Diplom-Ingenieur (FH)',
  'residence': 'Langenzenn',
  'occupation': 'R&D Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180577,
  'entity_type': 'politician',
  'label': 'Thomas Lehmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180577',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-lehmann-0',
  'first_name': 'Thomas',
  'last_name': 'Lehmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Kaufmann im Einzelhandel',
  'residence': 'Erlangen',
  'occupation': 'Student',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180576,
  'entity_type': 'politician',
  'label': 'Mirco Kramer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180576',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mirco-kramer',
  'first_name': 'Mirco',
  'last_name': 'Kramer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Dipl. Wirtsch.-Ing. (FH)',
  'residence': 'Großhabersdorf',
  'occupation': 'Projektleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180572,
  'entity_type': 'politician',
  'label': 'Jörg Hannig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180572',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-hannig',
  'first_name': 'Jörg',
  'last_name': 'Hannig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Dipl.-Ing. (FH)',
  'residence': None,
  'occupation': 'Business Development Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180571,
  'entity_type': 'politician',
  'label': 'Conny Theimer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180571',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/conny-theimer',
  'first_name': 'Conny',
  'last_name': 'Theimer',
  'birth_name': 'Theimer',
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Sprachtherapeutin',
  'residence': 'Allershausen',
  'occupation': 'Angestellte Logopädin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180570,
  'entity_type': 'politician',
  'label': 'Benjamin Meindl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180570',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-meindl',
  'first_name': 'Benjamin',
  'last_name': 'Meindl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'IT Architekt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180569,
  'entity_type': 'politician',
  'label': 'Max Körbächer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180569',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/max-koerbaecher',
  'first_name': 'Max',
  'last_name': 'Körbächer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180568,
  'entity_type': 'politician',
  'label': 'Michael Landgraf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180568',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-landgraf',
  'first_name': 'Michael',
  'last_name': 'Landgraf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180567,
  'entity_type': 'politician',
  'label': 'Felix Browarzik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180567',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-browarzik',
  'first_name': 'Felix',
  'last_name': 'Browarzik',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Erding',
  'occupation': 'Wirtschaftsinformatiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180566,
  'entity_type': 'politician',
  'label': 'Daniel Hoffmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180566',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-hoffmann',
  'first_name': 'Daniel',
  'last_name': 'Hoffmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2002,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Schwarndorf',
  'occupation': 'Schüler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180565,
  'entity_type': 'politician',
  'label': 'Simon Gehrmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180565',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-gehrmann',
  'first_name': 'Simon',
  'last_name': 'Gehrmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Regensburg',
  'occupation': 'Unternehmensberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180564,
  'entity_type': 'politician',
  'label': 'Damian Wilfling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180564',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/damian-wilfling',
  'first_name': 'Damian',
  'last_name': 'Wilfling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Gerolsbach',
  'occupation': 'Student Luft- und Raumfahrtechnik',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180563,
  'entity_type': 'politician',
  'label': 'Simon Graf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180563',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-graf',
  'first_name': 'Simon',
  'last_name': 'Graf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Diplom Ingenieur',
  'residence': 'Unterhaching',
  'occupation': 'Ingenieur in der Raumfahrt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180562,
  'entity_type': 'politician',
  'label': 'Karl Dietzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180562',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-dietzel',
  'first_name': 'Karl',
  'last_name': 'Dietzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180561,
  'entity_type': 'politician',
  'label': 'Elisabeth Lemoigne',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180561',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elisabeth-lemoigne',
  'first_name': 'Elisabeth',
  'last_name': 'Lemoigne',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Hochschulabschluss, Staatsexamen',
  'residence': 'Miesbach',
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180560,
  'entity_type': 'politician',
  'label': 'Tilm Kelichhaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180560',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tilm-kelichhaus',
  'first_name': 'Tilm',
  'last_name': 'Kelichhaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Eichenau',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180559,
  'entity_type': 'politician',
  'label': 'Darico Schade',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180559',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/darico-schade',
  'first_name': 'Darico',
  'last_name': 'Schade',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Burglengenfeld',
  'occupation': 'Frewilligendienstleister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180558,
  'entity_type': 'politician',
  'label': 'Peter Scharf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180558',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-scharf',
  'first_name': 'Peter',
  'last_name': 'Scharf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Aktuar',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180557,
  'entity_type': 'politician',
  'label': 'Samuel Grimm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180557',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/samuel-grimm',
  'first_name': 'Samuel',
  'last_name': 'Grimm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Dachau',
  'occupation': 'Student der sozialen Arbeit',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180556,
  'entity_type': 'politician',
  'label': 'Javier Ortiz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180556',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/javier-ortiz',
  'first_name': 'Javier',
  'last_name': 'Ortiz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Dolmetscher',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180555,
  'entity_type': 'politician',
  'label': 'Felix Gallersdörfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180555',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-gallersdoerfer',
  'first_name': 'Felix',
  'last_name': 'Gallersdörfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'M.Sc.',
  'residence': 'München',
  'occupation': 'Data Scientist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180554,
  'entity_type': 'politician',
  'label': 'Daniel Mihalyi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180554',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-mihalyi',
  'first_name': 'Daniel',
  'last_name': 'Mihalyi',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Student',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180553,
  'entity_type': 'politician',
  'label': 'Tim Scharf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180553',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-scharf',
  'first_name': 'Tim',
  'last_name': 'Scharf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Angestellter im öffentlichen Dienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180552,
  'entity_type': 'politician',
  'label': 'Mika Schielein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180552',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mika-schielein',
  'first_name': 'Mika',
  'last_name': 'Schielein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2002,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180551,
  'entity_type': 'politician',
  'label': 'Maria Raabe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180551',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-raabe',
  'first_name': 'Maria',
  'last_name': 'Raabe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1998,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Hotelkauffrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180550,
  'entity_type': 'politician',
  'label': 'Rose Fee Frankenreiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180550',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rose-fee-frankenreiter',
  'first_name': 'Rose Fee',
  'last_name': 'Frankenreiter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'IT-Systemelektroniker',
  'residence': 'München',
  'occupation': 'Soldatin - IT Ausbilder',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180549,
  'entity_type': 'politician',
  'label': 'Philipp Eisenmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180549',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-eisenmann',
  'first_name': 'Philipp',
  'last_name': 'Eisenmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Event- und Messemanagement (B.Sc.)',
  'residence': 'München',
  'occupation': 'Projektleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180548,
  'entity_type': 'politician',
  'label': 'Massimo Ferraro',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180548',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/massimo-ferraro',
  'first_name': 'Massimo',
  'last_name': 'Ferraro',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Diplom-Betriebswirt',
  'residence': 'München',
  'occupation': 'Bereichsleiter ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180546,
  'entity_type': 'politician',
  'label': 'Christian Matt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180546',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-matt',
  'first_name': 'Christian',
  'last_name': 'Matt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180545,
  'entity_type': 'politician',
  'label': 'Herbert Stumpe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180545',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/herbert-stumpe',
  'first_name': 'Herbert',
  'last_name': 'Stumpe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180544,
  'entity_type': 'politician',
  'label': 'Moritz Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180544',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/moritz-vogt',
  'first_name': 'Moritz',
  'last_name': 'Vogt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Hotelfachmann',
  'residence': 'Bibertal',
  'occupation': 'Trainer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180543,
  'entity_type': 'politician',
  'label': 'Patrick Leuchtle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180543',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-leuchtle',
  'first_name': 'Patrick',
  'last_name': 'Leuchtle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180536,
  'entity_type': 'politician',
  'label': 'Josua Eilers-Gurk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180536',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josua-eilers-gurk',
  'first_name': 'Josua',
  'last_name': 'Eilers-Gurk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Freilassing',
  'occupation': 'IT-Projektmanager / Betriebsrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180535,
  'entity_type': 'politician',
  'label': 'Nasrin Kunzelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180535',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nasrin-kunzelmann',
  'first_name': 'Nasrin',
  'last_name': 'Kunzelmann',
  'birth_name': 'Massih-Tehrani ',
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Rosenheim',
  'occupation': 'Kinderpflegerin und Sekretärin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180534,
  'entity_type': 'politician',
  'label': 'Christian Unger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180534',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-unger',
  'first_name': 'Christian',
  'last_name': 'Unger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Rosenheim',
  'occupation': 'Marketing Manager',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180533,
  'entity_type': 'politician',
  'label': 'Michael Lutzeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180533',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-lutzeier',
  'first_name': 'Michael',
  'last_name': 'Lutzeier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Diessen am Ammersee',
  'occupation': 'Musiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180532,
  'entity_type': 'politician',
  'label': 'Patrick Ott',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180532',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-ott',
  'first_name': 'Patrick',
  'last_name': 'Ott',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180531,
  'entity_type': 'politician',
  'label': 'Stefan Wieser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180531',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-wieser',
  'first_name': 'Stefan',
  'last_name': 'Wieser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Olching',
  'occupation': 'KfZ Meckaniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180530,
  'entity_type': 'politician',
  'label': 'Niklas Welser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180530',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-welser',
  'first_name': 'Niklas',
  'last_name': 'Welser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2005,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Langenbach',
  'occupation': 'Schüler',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180529,
  'entity_type': 'politician',
  'label': 'Carina Fiedler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180529',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-fiedler',
  'first_name': 'Carina',
  'last_name': 'Fiedler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1999,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Landshut',
  'occupation': 'Auszubildende',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180528,
  'entity_type': 'politician',
  'label': 'Andreas Burget',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180528',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-burget',
  'first_name': 'Andreas',
  'last_name': 'Burget',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Kichseeon',
  'occupation': 'IT Systemingenieur',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180527,
  'entity_type': 'politician',
  'label': 'Johanna Gaßner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180527',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-gassner',
  'first_name': 'Johanna',
  'last_name': 'Gaßner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Freilassing',
  'occupation': 'Mediengestalterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180526,
  'entity_type': 'politician',
  'label': 'Simon Bürgel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180526',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-buergel',
  'first_name': 'Simon',
  'last_name': 'Bürgel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Industriemeister',
  'residence': 'Altötting',
  'occupation': 'Chemikant',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180525,
  'entity_type': 'politician',
  'label': 'Fabian Weiss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180525',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-weiss',
  'first_name': 'Fabian',
  'last_name': 'Weiss',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Volksvertreter',
  'residence': 'München',
  'occupation': 'Verwaltungsangestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180524,
  'entity_type': 'politician',
  'label': 'Regina Koller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180524',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/regina-koller',
  'first_name': 'Regina',
  'last_name': 'Koller',
  'birth_name': 'Hupf',
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'staatlich geprüfte Kinderpflegerin',
  'residence': 'München',
  'occupation': 'Verkaufshilfe AGH nach §16d SGB II ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180523,
  'entity_type': 'politician',
  'label': 'Sabrina Werner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180523',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabrina-werner',
  'first_name': 'Sabrina',
  'last_name': 'Werner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Sozialpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180522,
  'entity_type': 'politician',
  'label': 'Sebastian Fiddicke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180522',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-fiddicke',
  'first_name': 'Sebastian',
  'last_name': 'Fiddicke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180521,
  'entity_type': 'politician',
  'label': 'Roy Militzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180521',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roy-militzer',
  'first_name': 'Roy',
  'last_name': 'Militzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Administrativer Mitarbeiter im Kundenservice',
  'statistic_questions': 5,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180520,
  'entity_type': 'politician',
  'label': 'Josef Kreitmair',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180520',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-kreitmair',
  'first_name': 'Josef',
  'last_name': 'Kreitmair',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': 'Neu-Ulm',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180519,
  'entity_type': 'politician',
  'label': 'Jens Pfaffenbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180519',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-pfaffenbauer',
  'first_name': 'Jens',
  'last_name': 'Pfaffenbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180518,
  'entity_type': 'politician',
  'label': 'Julia Möller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180518',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-moeller',
  'first_name': 'Julia',
  'last_name': 'Möller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180517,
  'entity_type': 'politician',
  'label': 'Stefan Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180517',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-wagner-0',
  'first_name': 'Stefan',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180516,
  'entity_type': 'politician',
  'label': 'Thomas Pfaffenbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180516',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-pfaffenbauer',
  'first_name': 'Thomas',
  'last_name': 'Pfaffenbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'IT Sales Advisor (ISO)',
  'residence': 'Kaufbeuren',
  'occupation': 'IT-Berater (angestellt)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180515,
  'entity_type': 'politician',
  'label': 'Michael Riedmüller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180515',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-riedmueller',
  'first_name': 'Michael',
  'last_name': 'Riedmüller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180514,
  'entity_type': 'politician',
  'label': 'Justin Nikolai Ebert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180514',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/justin-nikolai-ebert',
  'first_name': 'Justin Nikolai',
  'last_name': 'Ebert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180513,
  'entity_type': 'politician',
  'label': 'Tobias Bernhard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180513',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-bernhard',
  'first_name': 'Tobias',
  'last_name': 'Bernhard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180512,
  'entity_type': 'politician',
  'label': 'Alexander Katzinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180512',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-katzinger',
  'first_name': 'Alexander',
  'last_name': 'Katzinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180511,
  'entity_type': 'politician',
  'label': 'Michael Sokopp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180511',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-sokopp',
  'first_name': 'Michael',
  'last_name': 'Sokopp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180510,
  'entity_type': 'politician',
  'label': 'Harald Nagel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180510',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-nagel',
  'first_name': 'Harald',
  'last_name': 'Nagel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180509,
  'entity_type': 'politician',
  'label': 'Carmen Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180509',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carmen-schneider',
  'first_name': 'Carmen',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180508,
  'entity_type': 'politician',
  'label': 'Marco Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180508',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-scholz',
  'first_name': 'Marco',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': 'Mömbris- Schimborn',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180507,
  'entity_type': 'politician',
  'label': 'Klaus Weigand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180507',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-weigand',
  'first_name': 'Klaus',
  'last_name': 'Weigand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180506,
  'entity_type': 'politician',
  'label': 'Heiko Schubert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180506',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heiko-schubert-0',
  'first_name': 'Heiko',
  'last_name': 'Schubert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180505,
  'entity_type': 'politician',
  'label': 'Christian Denzler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180505',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-denzler',
  'first_name': 'Christian',
  'last_name': 'Denzler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': 'Aurachtal',
  'occupation': 'Einkäufer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180504,
  'entity_type': 'politician',
  'label': 'Michael Weigl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180504',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-weigl',
  'first_name': 'Michael',
  'last_name': 'Weigl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180503,
  'entity_type': 'politician',
  'label': 'Ludwig Hofstetter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180503',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-hofstetter',
  'first_name': 'Ludwig',
  'last_name': 'Hofstetter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180502,
  'entity_type': 'politician',
  'label': 'Bernd Friedlein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180502',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-friedlein',
  'first_name': 'Bernd',
  'last_name': 'Friedlein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180501,
  'entity_type': 'politician',
  'label': 'Michael Müdsam',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180501',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-muedsam',
  'first_name': 'Michael',
  'last_name': 'Müdsam',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': 'Fürth',
  'occupation': 'Studienrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180500,
  'entity_type': 'politician',
  'label': 'Georg Zinner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180500',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-zinner',
  'first_name': 'Georg',
  'last_name': 'Zinner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180499,
  'entity_type': 'politician',
  'label': 'Luca Brenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180499',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luca-brenk',
  'first_name': 'Luca',
  'last_name': 'Brenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180498,
  'entity_type': 'politician',
  'label': 'Christian Keilholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180498',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-keilholz',
  'first_name': 'Christian',
  'last_name': 'Keilholz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180497,
  'entity_type': 'politician',
  'label': 'Michael Kandler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180497',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-kandler',
  'first_name': 'Michael',
  'last_name': 'Kandler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Wirtschaftsfachwirt i.A.',
  'residence': 'Creußen',
  'occupation': 'Betriebsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180496,
  'entity_type': 'politician',
  'label': 'Andreas Kandler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180496',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kandler',
  'first_name': 'Andreas',
  'last_name': 'Kandler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Metallbauer',
  'residence': 'Waldsassen',
  'occupation': 'Einzelunternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180495,
  'entity_type': 'politician',
  'label': 'Sabrina Hammerl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180495',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabrina-hammerl',
  'first_name': 'Sabrina',
  'last_name': 'Hammerl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180494,
  'entity_type': 'politician',
  'label': 'Hubertus Berger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180494',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hubertus-berger',
  'first_name': 'Hubertus',
  'last_name': 'Berger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180493,
  'entity_type': 'politician',
  'label': 'Benjamin Gäbl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180493',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-gaebl',
  'first_name': 'Benjamin',
  'last_name': 'Gäbl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Schreiner',
  'residence': 'Amberg',
  'occupation': 'Produktionsfachkraft Chemie; Club-/ Barbetreiber',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180492,
  'entity_type': 'politician',
  'label': 'Johannes Goetz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180492',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-goetz',
  'first_name': 'Johannes',
  'last_name': 'Goetz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180491,
  'entity_type': 'politician',
  'label': 'Mathias Kahlert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180491',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mathias-kahlert',
  'first_name': 'Mathias',
  'last_name': 'Kahlert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Betriebswirt (IHK)',
  'residence': 'Moosthenning',
  'occupation': 'Vertriebsinnendienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180490,
  'entity_type': 'politician',
  'label': 'Roland Unholzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180490',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-unholzer',
  'first_name': 'Roland',
  'last_name': 'Unholzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180489,
  'entity_type': 'politician',
  'label': 'Markus Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180489',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-wagner-0',
  'first_name': 'Markus',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Staatsexamen',
  'residence': 'Apfeldorf',
  'occupation': 'Lehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180488,
  'entity_type': 'politician',
  'label': 'Franz Pletschacher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180488',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-pletschacher',
  'first_name': 'Franz',
  'last_name': 'Pletschacher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180487,
  'entity_type': 'politician',
  'label': 'Rudolf Gutjahr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180487',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rudolf-gutjahr',
  'first_name': 'Rudolf',
  'last_name': 'Gutjahr',
  'birth_name': 'Rudolf Gutjahr',
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Meister',
  'residence': 'Wörthsee',
  'occupation': 'Forstwirtschaftsmeister',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180486,
  'entity_type': 'politician',
  'label': 'Peter Ruppert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180486',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-ruppert',
  'first_name': 'Peter',
  'last_name': 'Ruppert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180485,
  'entity_type': 'politician',
  'label': 'Marcus Klinkicht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180485',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcus-klinkicht',
  'first_name': 'Marcus',
  'last_name': 'Klinkicht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180484,
  'entity_type': 'politician',
  'label': 'Anton Baur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180484',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anton-baur',
  'first_name': 'Anton',
  'last_name': 'Baur',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180483,
  'entity_type': 'politician',
  'label': 'Adalbert Diensthuber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180483',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adalbert-diensthuber',
  'first_name': 'Adalbert',
  'last_name': 'Diensthuber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180482,
  'entity_type': 'politician',
  'label': 'Christian Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180482',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-mueller-1',
  'first_name': 'Christian',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Industriekaufmann ',
  'residence': '82275 Emmering ',
  'occupation': 'Geschäftsführer, Kreisrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180481,
  'entity_type': 'politician',
  'label': 'Georg Seitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180481',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-seitz',
  'first_name': 'Georg',
  'last_name': 'Seitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180480,
  'entity_type': 'politician',
  'label': 'Michael Graf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180480',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-graf',
  'first_name': 'Michael',
  'last_name': 'Graf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': 'Meister',
  'residence': 'Erdweg',
  'occupation': 'Garten und Landschaftsbauer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180479,
  'entity_type': 'politician',
  'label': 'Stavros Tsoulouchopoulos',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180479',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stavros-tsoulouchopoulos',
  'first_name': 'Stavros',
  'last_name': 'Tsoulouchopoulos',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180478,
  'entity_type': 'politician',
  'label': 'Julia Gebhard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180478',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-gebhard',
  'first_name': 'Julia',
  'last_name': 'Gebhard',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180477,
  'entity_type': 'politician',
  'label': 'Alexandra Progl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180477',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-progl',
  'first_name': 'Alexandra',
  'last_name': 'Progl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180476,
  'entity_type': 'politician',
  'label': 'Georg Alexander Fritsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180476',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-alexander-fritsch',
  'first_name': 'Georg Alexander',
  'last_name': 'Fritsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180475,
  'entity_type': 'politician',
  'label': 'Michael Siegle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180475',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-siegle',
  'first_name': 'Michael',
  'last_name': 'Siegle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Auszubildender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180474,
  'entity_type': 'politician',
  'label': 'Anton Weitmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180474',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anton-weitmann',
  'first_name': 'Anton',
  'last_name': 'Weitmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Weißenhorn',
  'occupation': 'Gefahrgutbeauftragter/ Landwirt im Nebenerwerb',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180473,
  'entity_type': 'politician',
  'label': 'Helmut Scheel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180473',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helmut-scheel',
  'first_name': 'Helmut',
  'last_name': 'Scheel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Techn. Zeichner (Stahlbau)',
  'residence': 'Lechbruck',
  'occupation': 'Konstrukteur Stahl- u. Industriebau',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180472,
  'entity_type': 'politician',
  'label': 'Franz-Josef Natterer- Babych',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180472',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-josef-natterer-babych-0',
  'first_name': 'Franz-Josef',
  'last_name': 'Natterer- Babych',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dipl.-Ing.',
  'residence': 'Kempten',
  'occupation': 'Oberstudienrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180471,
  'entity_type': 'politician',
  'label': 'Miriam Albrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180471',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-albrecht',
  'first_name': 'Miriam',
  'last_name': 'Albrecht',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom-Kauffrau',
  'residence': 'Günzburg',
  'occupation': 'Geschäftsführerin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180470,
  'entity_type': 'politician',
  'label': 'Wolfgang Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180470',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-mueller-1',
  'first_name': 'Wolfgang',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Welden',
  'occupation': 'Radio- und Fernsehtechniker-Meister',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180469,
  'entity_type': 'politician',
  'label': 'Sebastian Thumbach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180469',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-thumbach',
  'first_name': 'Sebastian',
  'last_name': 'Thumbach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Chemielaborant, Materialwissenschaftler',
  'residence': 'Aindling',
  'occupation': 'Student',
  'statistic_questions': 7,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180467,
  'entity_type': 'politician',
  'label': 'Peter Biet',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180467',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-biet',
  'first_name': 'Peter',
  'last_name': 'Biet',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': 'evang. Theologe',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180466,
  'entity_type': 'politician',
  'label': 'Heinz Braun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180466',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-braun',
  'first_name': 'Heinz',
  'last_name': 'Braun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Schreinermeister',
  'residence': 'Würzburg',
  'occupation': 'Schreinermeister, Abteilungsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180465,
  'entity_type': 'politician',
  'label': 'Roland Probst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180465',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-probst',
  'first_name': 'Roland',
  'last_name': 'Probst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Euerbach',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180464,
  'entity_type': 'politician',
  'label': 'Torsten Ruf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180464',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-ruf',
  'first_name': 'Torsten',
  'last_name': 'Ruf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Lohr am Main',
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180463,
  'entity_type': 'politician',
  'label': 'Martin Günzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180463',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-guenzel',
  'first_name': 'Martin',
  'last_name': 'Günzel',
  'birth_name': 'Günzel',
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dipl.-Betriebswirt (FH)',
  'residence': 'Kitzingen',
  'occupation': 'Kaufmann, Stadtrat, techn. Vertrieb für Dämmstoffe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180462,
  'entity_type': 'politician',
  'label': 'Alfred Streib',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180462',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfred-streib',
  'first_name': 'Alfred',
  'last_name': 'Streib',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Aschaffenburg',
  'occupation': 'Dipl. Theologe, Stadtrat a.D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180461,
  'entity_type': 'politician',
  'label': 'Marco Engelhard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180461',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-engelhard',
  'first_name': 'Marco',
  'last_name': 'Engelhard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dr.-Ing.',
  'residence': 'Rohr/ OT Regelsbach',
  'occupation': 'Teamleiter in der Entwicklung von Schienenfahrzeugen',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180460,
  'entity_type': 'politician',
  'label': 'Oliver Sperber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180460',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-sperber',
  'first_name': 'Oliver',
  'last_name': 'Sperber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Winkelhaid b Nürnberg',
  'occupation': 'Personalreferent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180459,
  'entity_type': 'politician',
  'label': 'Tristan Billmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180459',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tristan-billmann',
  'first_name': 'Tristan',
  'last_name': 'Billmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Emskirchen',
  'occupation': 'Biolandwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180458,
  'entity_type': 'politician',
  'label': 'Michael Kertes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180458',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-kertes',
  'first_name': 'Michael',
  'last_name': 'Kertes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Fürth',
  'occupation': 'Selbstständig',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180457,
  'entity_type': 'politician',
  'label': 'Joachim Jarosch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180457',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-jarosch',
  'first_name': 'Joachim',
  'last_name': 'Jarosch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Erlangen',
  'occupation': 'Bankkaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180456,
  'entity_type': 'politician',
  'label': 'Stephan Mitesser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180456',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-mitesser',
  'first_name': 'Stephan',
  'last_name': 'Mitesser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Bachelor of Science Ernährung und Versorgungsmanagement',
  'residence': 'Nürnberg',
  'occupation': 'Fachreferent Wohlfahrtsverband',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180455,
  'entity_type': 'politician',
  'label': 'Dominik Mozzicato',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180455',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-mozzicato',
  'first_name': 'Dominik',
  'last_name': 'Mozzicato',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Kaufmann für Bürokommunikation, Justizvollzugsbeamter',
  'residence': 'Nürnberg',
  'occupation': 'Justizvollzugsbeamter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180454,
  'entity_type': 'politician',
  'label': 'Elisabeth Schulze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180454',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elisabeth-schulze',
  'first_name': 'Elisabeth',
  'last_name': 'Schulze',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Mainleus',
  'occupation': 'Unternehmerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180453,
  'entity_type': 'politician',
  'label': 'Erich Wohnig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180453',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-wohnig',
  'first_name': 'Erich',
  'last_name': 'Wohnig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom-Informatiker',
  'residence': 'Bad Rodach',
  'occupation': 'Unternehmensarchitekt, Oberfränkischer ÖDP-Vorsitzender',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180452,
  'entity_type': 'politician',
  'label': 'Cindy Laschitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180452',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cindy-laschitz',
  'first_name': 'Cindy',
  'last_name': 'Laschitz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Hof',
  'occupation': 'Schülerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180451,
  'entity_type': 'politician',
  'label': 'Sarah Sandmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180451',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-sandmann',
  'first_name': 'Sarah',
  'last_name': 'Sandmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Coburg',
  'occupation': 'Diplom-Sozialpädagogin (FH)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180450,
  'entity_type': 'politician',
  'label': 'Markus Lenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180450',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-lenk',
  'first_name': 'Markus',
  'last_name': 'Lenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dipl.Biol., Lehramts-Staatsexamen',
  'residence': 'Eckersdorf',
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180449,
  'entity_type': 'politician',
  'label': 'Robert Lechner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180449',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-lechner',
  'first_name': 'Robert',
  'last_name': 'Lechner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': 'Pechbrunn',
  'occupation': 'IT-Spezialist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180448,
  'entity_type': 'politician',
  'label': 'Regine Wörle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180448',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/regine-woerle',
  'first_name': 'Regine',
  'last_name': 'Wörle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Regensburg',
  'occupation': 'Mathematikerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180447,
  'entity_type': 'politician',
  'label': 'Ludwig Härteis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180447',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-haerteis',
  'first_name': 'Ludwig',
  'last_name': 'Härteis',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Studium der Geschichte, Politikwissenschaft und Germanistik (M.A./OStR)',
  'residence': 'Lauterhofen',
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180446,
  'entity_type': 'politician',
  'label': 'Florian Gruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180446',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-gruber',
  'first_name': 'Florian',
  'last_name': 'Gruber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Cham, Oberpf',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180445,
  'entity_type': 'politician',
  'label': 'Sepp Rettenbeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180445',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sepp-rettenbeck',
  'first_name': 'Sepp',
  'last_name': 'Rettenbeck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dipl. Religionspädagoge ',
  'residence': 'Wurmannsquick',
  'occupation': 'Religionslehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180444,
  'entity_type': 'politician',
  'label': 'Ralf Schramm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180444',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-schramm',
  'first_name': 'Ralf',
  'last_name': 'Schramm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Attenhofen',
  'occupation': 'Physiker, freiberuflicher Übersetzer für technische Patente',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180443,
  'entity_type': 'politician',
  'label': 'Wolfgang Königbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180443',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-koenigbauer',
  'first_name': 'Wolfgang',
  'last_name': 'Königbauer',
  'birth_name': 'Schmid',
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Elekroinstallateur,Physiotherapeut',
  'residence': 'Traunstein',
  'occupation': 'Physiotherapeut selbstständig , Geschäftsführer Sunwend GmbH ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180442,
  'entity_type': 'politician',
  'label': 'Walter Häfeker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180442',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-haefeker',
  'first_name': 'Walter',
  'last_name': 'Häfeker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Seeshaupt',
  'occupation': 'Berufsimker i.R.',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180441,
  'entity_type': 'politician',
  'label': 'Stefan Skoruppa',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180441',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-skoruppa',
  'first_name': 'Stefan',
  'last_name': 'Skoruppa',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Humanmediziner',
  'residence': 'Jetzendorf',
  'occupation': 'Hausarzt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180440,
  'entity_type': 'politician',
  'label': 'Holger Geißel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180440',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-geissel',
  'first_name': 'Holger',
  'last_name': 'Geißel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Rohrenfels',
  'occupation': 'Dipl.- Handelslehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180439,
  'entity_type': 'politician',
  'label': 'Karin Schuster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180439',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-schuster',
  'first_name': 'Karin',
  'last_name': 'Schuster',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Oberschleißheim',
  'occupation': 'Geschäftsfeldleitung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180438,
  'entity_type': 'politician',
  'label': 'Sebastian Riedelbauch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180438',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-riedelbauch',
  'first_name': 'Sebastian',
  'last_name': 'Riedelbauch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom Kaufmann',
  'residence': 'Oberschleißheim',
  'occupation': 'Teamlead Finance and Controlling',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180437,
  'entity_type': 'politician',
  'label': 'Karin Kuret',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180437',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-kuret',
  'first_name': 'Karin',
  'last_name': 'Kuret',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Landsberg am Lech',
  'occupation': 'Dipl.- Ökotrophologin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180436,
  'entity_type': 'politician',
  'label': 'Wolfgang Reiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180436',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-reiter',
  'first_name': 'Wolfgang',
  'last_name': 'Reiter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Erding',
  'occupation': 'Apotheker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180435,
  'entity_type': 'politician',
  'label': 'Peter Sturm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180435',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-sturm',
  'first_name': 'Peter',
  'last_name': 'Sturm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom Biologe',
  'residence': 'Laufen',
  'occupation': 'Biologe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180434,
  'entity_type': 'politician',
  'label': 'Manuel Tessun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180434',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-tessun',
  'first_name': 'Manuel',
  'last_name': 'Tessun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dipl Betriebswirt',
  'residence': 'Egling-Attenham',
  'occupation': 'Geschäftsführer, Immobilienmakler, Dozent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180433,
  'entity_type': 'politician',
  'label': 'Martin Antwerpen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180433',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-antwerpen',
  'first_name': 'Martin',
  'last_name': 'Antwerpen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Diplom-Theologe',
  'residence': 'Altötting',
  'occupation': 'Religionlehrer i.K.',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180432,
  'entity_type': 'politician',
  'label': 'Tobias Ruff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180432',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-ruff',
  'first_name': 'Tobias',
  'last_name': 'Ruff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': ' Dipl.-Forstingenieur (FH)',
  'residence': 'München',
  'occupation': 'Gewässerökologe',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180431,
  'entity_type': 'politician',
  'label': 'Beate Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180431',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beate-fuchs',
  'first_name': 'Beate',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Haustechnik- Unternehmerin',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180430,
  'entity_type': 'politician',
  'label': 'Johann Saurer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180430',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johann-saurer',
  'first_name': 'Johann',
  'last_name': 'Saurer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'selbstständiger Handwerker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180429,
  'entity_type': 'politician',
  'label': 'Andreas Berndl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180429',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-berndl',
  'first_name': 'Andreas',
  'last_name': 'Berndl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'Gstadt am Chiemsee',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180428,
  'entity_type': 'politician',
  'label': 'Verena Hamm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180428',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/verena-hamm',
  'first_name': 'Verena',
  'last_name': 'Hamm',
  'birth_name': 'Verena Miriam Hamm',
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Dipl. Psychotheratpeutin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180427,
  'entity_type': 'politician',
  'label': 'Stefan Massonet',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180427',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-massonet',
  'first_name': 'Stefan',
  'last_name': 'Massonet',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Dr. rer. nat., Diplom Physiker',
  'residence': 'München',
  'occupation': 'IT Senior Prozess und Change Manager',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180426,
  'entity_type': 'politician',
  'label': 'Roland Prießnitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180426',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-priessnitz-0',
  'first_name': 'Roland',
  'last_name': 'Prießnitz',
  'birth_name': 'Prießnitz',
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Steuerberater Diplom Betriebswirt (FH)',
  'residence': 'Neu-Ulm',
  'occupation': 'selbständiger Steuerberater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180425,
  'entity_type': 'politician',
  'label': 'Michael Bosse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180425',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-bosse',
  'first_name': 'Michael',
  'last_name': 'Bosse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Donauwörth',
  'occupation': 'Unternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180424,
  'entity_type': 'politician',
  'label': 'Anton Rittel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180424',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anton-rittel',
  'first_name': 'Anton',
  'last_name': 'Rittel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180423,
  'entity_type': 'politician',
  'label': 'Marc Sturm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180423',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marc-sturm',
  'first_name': 'Marc',
  'last_name': 'Sturm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180422,
  'entity_type': 'politician',
  'label': 'Claudia Schuster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180422',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-schuster',
  'first_name': 'Claudia',
  'last_name': 'Schuster',
  'birth_name': 'Groth',
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Dipl.-Informatikerin (FH), Bürgermeisterin a.D.',
  'residence': 'Gersthofen',
  'occupation': 'Dipl.-Informatikerin (FH), Arbeitsbereichsleitung',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180421,
  'entity_type': 'politician',
  'label': 'Ferdinand Traub',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180421',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ferdinand-traub',
  'first_name': 'Ferdinand',
  'last_name': 'Traub',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Industriekaufmann, Bachelor of Procurement and Logistics (ICC), Beamter, Soldat a.D.',
  'residence': 'Augsburg',
  'occupation': 'Beamter und GmbH-Geschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180420,
  'entity_type': 'politician',
  'label': 'Felix Freiherr von Zobel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180420',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-freiherr-von-zobel',
  'first_name': 'Felix',
  'last_name': 'Freiherr von Zobel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'M. Sc. Agrar',
  'residence': 'Ochsenfurt - Darstadt',
  'occupation': 'Landwirt, stv. Landrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180419,
  'entity_type': 'politician',
  'label': 'Edwin Hußlein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180419',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edwin-husslein',
  'first_name': 'Edwin',
  'last_name': 'Hußlein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180418,
  'entity_type': 'politician',
  'label': 'Thomas Zöller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180418',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-zoeller',
  'first_name': 'Thomas',
  'last_name': 'Zöller',
  'birth_name': 'Zöller',
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Maschinenbautechniker',
  'residence': 'Mönchberg',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180417,
  'entity_type': 'politician',
  'label': 'Felix Wallström',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180417',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-wallstroem',
  'first_name': 'Felix',
  'last_name': 'Wallström',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Volkach',
  'occupation': 'BRK-Kreisgeschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180416,
  'entity_type': 'politician',
  'label': 'Maili Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180416',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maili-wagner',
  'first_name': 'Maili',
  'last_name': 'Wagner',
  'birth_name': 'Machat',
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Gymnasiallehrerin (Englisch, Sport)',
  'residence': 'Laufach',
  'occupation': 'Oberstudienrätin, Kreis- und Gemeinderätin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180415,
  'entity_type': 'politician',
  'label': 'Brigitte Heim',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180415',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-heim',
  'first_name': 'Brigitte',
  'last_name': 'Heim',
  'birth_name': 'Berger',
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Bürokauffrau, staatl.gepr.Sekretärin, Fachkauffrau Einkauf und Materialwirtschaft',
  'residence': 'Westerngrund',
  'occupation': 'Bürgermeisterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180414,
  'entity_type': 'politician',
  'label': 'Markus Würth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180414',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-wuerth',
  'first_name': 'Markus',
  'last_name': 'Würth',
  'birth_name': 'Würth',
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Diplom-Wirtschaftsinformatiker (FH)',
  'residence': 'Roth',
  'occupation': 'Diplom-Wirtschaftsinformatiker',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180413,
  'entity_type': 'politician',
  'label': 'Fritz Ruf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180413',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fritz-ruf',
  'first_name': 'Fritz',
  'last_name': 'Ruf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180412,
  'entity_type': 'politician',
  'label': 'Anette Wirth-Hücking',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180412',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anette-wirth-huecking',
  'first_name': 'Anette',
  'last_name': 'Wirth-Hücking',
  'birth_name': 'Wirth',
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Biologielaborantin',
  'residence': 'Erlangen',
  'occupation': 'BTA, Tutorin, Stadträtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180410,
  'entity_type': 'politician',
  'label': 'Alexander Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180410',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-schmidt',
  'first_name': 'Alexander',
  'last_name': 'Schmidt',
  'birth_name': 'Schmidt',
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'M.A. (Organisations- und Personalentwicklung), Dipl.-Verwaltungswirt (FH)',
  'residence': 'Schwabach ',
  'occupation': 'Leiter einer kommunalen Bildungseinrichtung ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180409,
  'entity_type': 'politician',
  'label': 'Julia Hacker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180409',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-hacker',
  'first_name': 'Julia',
  'last_name': 'Hacker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Lauf an der Pegnitz',
  'occupation': 'Studentin/Mitarbeiterin in einem Abgeordnetenbüro',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180408,
  'entity_type': 'politician',
  'label': 'Heinz Nether',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180408',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-nether',
  'first_name': 'Heinz',
  'last_name': 'Nether',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Nürnberg',
  'occupation': 'Schornsteinfeger',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180407,
  'entity_type': 'politician',
  'label': 'Nicola Schoppel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180407',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicola-schoppel',
  'first_name': 'Nicola',
  'last_name': 'Schoppel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Wirtschaftsfachwirt ',
  'residence': 'Coburg ',
  'occupation': 'Dienstleistungsplaner ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180406,
  'entity_type': 'politician',
  'label': 'Stefan Frühbeißer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180406',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-fruehbeisser',
  'first_name': 'Stefan',
  'last_name': 'Frühbeißer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Verwaltungsfachwirt',
  'residence': 'Pottenstein',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180405,
  'entity_type': 'politician',
  'label': 'Manuel Hirschfelder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180405',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-hirschfelder',
  'first_name': 'Manuel',
  'last_name': 'Hirschfelder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180404,
  'entity_type': 'politician',
  'label': 'Martin Scharf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180404',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-scharf',
  'first_name': 'Martin',
  'last_name': 'Scharf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180403,
  'entity_type': 'politician',
  'label': 'Michael Schien',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180403',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-schien',
  'first_name': 'Michael',
  'last_name': 'Schien',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Lehrer Realschule',
  'residence': 'Regensburg',
  'occupation': 'Lehrer',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180402,
  'entity_type': 'politician',
  'label': 'Julian Preidl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180402',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-preidl',
  'first_name': 'Julian',
  'last_name': 'Preidl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Kötzting',
  'occupation': 'Abgeordnetenbüroleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180401,
  'entity_type': 'politician',
  'label': 'Bernhard Heinisch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180401',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernhard-heinisch',
  'first_name': 'Bernhard',
  'last_name': 'Heinisch',
  'birth_name': 'Bernhard Heinisch',
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Elektroniker',
  'residence': 'Amberg ',
  'occupation': 'Angestellter der Stadt Amberg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180400,
  'entity_type': 'politician',
  'label': 'Dennis Diermeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180400',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-diermeier',
  'first_name': 'Dennis',
  'last_name': 'Diermeier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Betriebswirt (VWA)',
  'residence': 'Kelheim ',
  'occupation': 'Regionalleiter, 2. Bürgermeister ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180399,
  'entity_type': 'politician',
  'label': 'Andrea Einhellig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180399',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-einhellig',
  'first_name': 'Andrea',
  'last_name': 'Einhellig',
  'birth_name': 'Domani',
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Beamtin',
  'residence': 'Hengersberg',
  'occupation': 'Verwaltungsbeamtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180398,
  'entity_type': 'politician',
  'label': 'Martin Brunnhuber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180398',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-brunnhuber',
  'first_name': 'Martin',
  'last_name': 'Brunnhuber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Diplom Bauingenieur (FH) und Berufsschullehrer',
  'residence': 'Grabenstätt',
  'occupation': 'Berufsschullehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180397,
  'entity_type': 'politician',
  'label': 'Sebastian Schrott',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180397',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-schrott',
  'first_name': 'Sebastian',
  'last_name': 'Schrott',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Betriebswirt (M. A.)',
  'residence': 'Baar-Ebenhausen',
  'occupation': 'Personalleiter in einem mittelständischen Unternehmen (Elektrohandwerk) mit ca. 350 Mitarbeitern',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180396,
  'entity_type': 'politician',
  'label': 'Johannes Seitner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180396',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-seitner',
  'first_name': 'Johannes',
  'last_name': 'Seitner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180395,
  'entity_type': 'politician',
  'label': 'Martin Rosenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180395',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-rosenberger',
  'first_name': 'Martin',
  'last_name': 'Rosenberger',
  'birth_name': 'Martin Rosenberger',
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Landwirtschaftsmeister, Schreinergesellenbrief',
  'residence': 'Bayrischzell ',
  'occupation': 'Milchvieh- und Almbauer, selbstständiger Schreiner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180394,
  'entity_type': 'politician',
  'label': 'Florian Lichtenstern',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180394',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-lichtenstern',
  'first_name': 'Florian',
  'last_name': 'Lichtenstern',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Verwaltungsfachangestellter',
  'residence': 'Geltendorf',
  'occupation': 'Bauamtsleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180393,
  'entity_type': 'politician',
  'label': 'Sven Krage',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180393',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-krage',
  'first_name': 'Sven',
  'last_name': 'Krage',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Dorfen',
  'occupation': '3. Bürgermeister Stadt Dorfen',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180392,
  'entity_type': 'politician',
  'label': 'Maria Hörtrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180392',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-hoertrich',
  'first_name': 'Maria',
  'last_name': 'Hörtrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Erzieherin und Sozialpädagogin B.A.',
  'residence': 'Ebersberg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180391,
  'entity_type': 'politician',
  'label': 'Johann Groß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180391',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johann-gross',
  'first_name': 'Johann',
  'last_name': 'Groß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180390,
  'entity_type': 'politician',
  'label': 'Richard Lettenmayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180390',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/richard-lettenmayer',
  'first_name': 'Richard',
  'last_name': 'Lettenmayer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180388,
  'entity_type': 'politician',
  'label': 'Werner Weigand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180388',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/werner-weigand',
  'first_name': 'Werner',
  'last_name': 'Weigand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Volljurist, Versicherungsfachwirt, Personalfachkraft, Ausbilder',
  'residence': None,
  'occupation': 'Rentner (vorher: Sachbearbeiter für landwirtschaftliche Betriebe, Versicherung)',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180387,
  'entity_type': 'politician',
  'label': 'Pia Utz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180387',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pia-utz',
  'first_name': 'Pia',
  'last_name': 'Utz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180386,
  'entity_type': 'politician',
  'label': 'Rudolf Riedelsheimer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180386',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rudolf-riedelsheimer',
  'first_name': 'Rudolf',
  'last_name': 'Riedelsheimer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 183,
   'entity_type': 'party',
   'label': 'Partei mut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/183'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180385,
  'entity_type': 'politician',
  'label': 'Daniela Voß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180385',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniela-voss',
  'first_name': 'Daniela',
  'last_name': 'Voß',
  'birth_name': 'Voß',
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 183,
   'entity_type': 'party',
   'label': 'Partei mut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/183'},
  'party_past': None,
  'education': 'Schauspielerin',
  'residence': 'München',
  'occupation': 'Schauspielerin / Yogalehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180384,
  'entity_type': 'politician',
  'label': 'Sebastian Felsner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180384',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-felsner',
  'first_name': 'Sebastian',
  'last_name': 'Felsner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 183,
   'entity_type': 'party',
   'label': 'Partei mut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/183'},
  'party_past': None,
  'education': 'M.A. Pädagogik, M.A. Soziologie, ADTV Tanzlehrer',
  'residence': None,
  'occupation': 'Abteilungsassistenz, Lehrbeauftragter, Tanzlehrer, Autor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180383,
  'entity_type': 'politician',
  'label': 'Michaela Dietrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180383',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michaela-dietrich',
  'first_name': 'Michaela',
  'last_name': 'Dietrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 183,
   'entity_type': 'party',
   'label': 'Partei mut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/183'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180382,
  'entity_type': 'politician',
  'label': 'Rupert Reisinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180382',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rupert-reisinger',
  'first_name': 'Rupert',
  'last_name': 'Reisinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Memmingen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180381,
  'entity_type': 'politician',
  'label': 'Stefan Nowotny',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180381',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-nowotny',
  'first_name': 'Stefan',
  'last_name': 'Nowotny',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Waltenhofen',
  'occupation': 'Laborant',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180380,
  'entity_type': 'politician',
  'label': 'Heike Benz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180380',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-benz',
  'first_name': 'Heike',
  'last_name': 'Benz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Buch',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180379,
  'entity_type': 'politician',
  'label': 'Maximilian Arnold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180379',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-arnold',
  'first_name': 'Maximilian',
  'last_name': 'Arnold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Königsbrunn',
  'occupation': 'Erste-Hilfe Ausbilder',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180378,
  'entity_type': 'politician',
  'label': 'Bernd Edfelder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180378',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-edfelder',
  'first_name': 'Bernd',
  'last_name': 'Edfelder',
  'birth_name': 'Attmanspacher',
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Elektroniker, Fachinformatiker, Finanzexperte',
  'residence': 'Lauingen (Donau)',
  'occupation': 'Fahrer im Fahrdienst des BRK',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180377,
  'entity_type': 'politician',
  'label': 'Michael Haack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180377',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-haack',
  'first_name': 'Michael',
  'last_name': 'Haack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Adelzhausen',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180376,
  'entity_type': 'politician',
  'label': 'Niko Thomas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180376',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niko-thomas',
  'first_name': 'Niko',
  'last_name': 'Thomas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Augsburg',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180375,
  'entity_type': 'politician',
  'label': 'Fritz Effenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180375',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fritz-effenberger',
  'first_name': 'Fritz',
  'last_name': 'Effenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Audio Engineer SAE',
  'residence': 'Augsburg',
  'occupation': 'Tontechniker, Erzieher',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180374,
  'entity_type': 'politician',
  'label': 'Dmitry Nekhoroshkov',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180374',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dmitry-nekhoroshkov',
  'first_name': 'Dmitry',
  'last_name': 'Nekhoroshkov',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Würzburg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180373,
  'entity_type': 'politician',
  'label': 'Christina Kunkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180373',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christina-kunkel',
  'first_name': 'Christina',
  'last_name': 'Kunkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Studentin',
  'residence': 'Würzburg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180372,
  'entity_type': 'politician',
  'label': 'Jakob Schmitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180372',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jakob-schmitz',
  'first_name': 'Jakob',
  'last_name': 'Schmitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Würzburg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180371,
  'entity_type': 'politician',
  'label': 'Elli Klopf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180371',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elli-klopf',
  'first_name': 'Elli',
  'last_name': 'Klopf',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2001,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Würzburg',
  'occupation': 'Studentin der Psychologie',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180370,
  'entity_type': 'politician',
  'label': 'Lukas Gerstner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180370',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-gerstner',
  'first_name': 'Lukas',
  'last_name': 'Gerstner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Trappstadt',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180369,
  'entity_type': 'politician',
  'label': 'Bianca Hümpfner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180369',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bianca-huempfner',
  'first_name': 'Bianca',
  'last_name': 'Hümpfner',
  'birth_name': 'Hümpfner ',
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Kissingen',
  'occupation': 'Pflegekraft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180368,
  'entity_type': 'politician',
  'label': 'Oscar Friedenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180368',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oscar-friedenberger',
  'first_name': 'Oscar',
  'last_name': 'Friedenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Waldaschaff',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180367,
  'entity_type': 'politician',
  'label': 'Selina Pfister',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180367',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/selina-pfister',
  'first_name': 'Selina',
  'last_name': 'Pfister',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2000,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Kleinostheim',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180366,
  'entity_type': 'politician',
  'label': 'Cornelius Voigt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180366',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelius-voigt',
  'first_name': 'Cornelius',
  'last_name': 'Voigt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'approbierter Kinder- & Jugendlichenpsychotherapeut',
  'residence': 'Roth',
  'occupation': 'eigene Praxis',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180365,
  'entity_type': 'politician',
  'label': 'Valentin Schötz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180365',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/valentin-schoetz',
  'first_name': 'Valentin',
  'last_name': 'Schötz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2021,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Fachinformatiker / Systemintegration',
  'residence': 'Schwaig b. Nürnberg',
  'occupation': 'Informatiker im Netzwerbereich, Jugend- und Auszubildendenvertreter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180364,
  'entity_type': 'politician',
  'label': 'Christian Löbel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180364',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-loebel',
  'first_name': 'Christian',
  'last_name': 'Löbel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Cadolzburg',
  'occupation': 'Geschäftsführer des BDAJ Bayern',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180363,
  'entity_type': 'politician',
  'label': 'Bettina Wagegg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180363',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bettina-wagegg',
  'first_name': 'Bettina',
  'last_name': 'Wagegg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Fürth',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180362,
  'entity_type': 'politician',
  'label': 'Josephine Taucher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180362',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josephine-taucher',
  'first_name': 'Josephine',
  'last_name': 'Taucher',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Erlangen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180361,
  'entity_type': 'politician',
  'label': 'Nadja Gschwendtner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180361',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadja-gschwendtner',
  'first_name': 'Nadja',
  'last_name': 'Gschwendtner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Treuchtlingen',
  'occupation': 'Sozialarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180360,
  'entity_type': 'politician',
  'label': 'Johannes Besenecker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180360',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-besenecker',
  'first_name': 'Johannes',
  'last_name': 'Besenecker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Neuendettelsau',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180359,
  'entity_type': 'politician',
  'label': 'Antje Hauptmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180359',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antje-hauptmann',
  'first_name': 'Antje',
  'last_name': 'Hauptmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Nürnberg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180358,
  'entity_type': 'politician',
  'label': 'Felix Heym',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180358',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-heym',
  'first_name': 'Felix',
  'last_name': 'Heym',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Nürnberg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180357,
  'entity_type': 'politician',
  'label': 'Alexander Jäger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180357',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-jaeger-1',
  'first_name': 'Alexander',
  'last_name': 'Jäger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Selb',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180356,
  'entity_type': 'politician',
  'label': 'Sebastian Engelhardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180356',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-engelhardt',
  'first_name': 'Sebastian',
  'last_name': 'Engelhardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Elektroniker für Betriebstechnik',
  'residence': 'Hof',
  'occupation': 'Abiturient ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180355,
  'entity_type': 'politician',
  'label': 'Dustin Opitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180355',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dustin-opitz',
  'first_name': 'Dustin',
  'last_name': 'Opitz',
  'birth_name': 'Waldbröl',
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Krankenpfleger , Physician assistant',
  'residence': 'Bamberg',
  'occupation': 'physician assistant (Student)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180354,
  'entity_type': 'politician',
  'label': 'Babette Saeidi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180354',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/babette-saeidi',
  'first_name': 'Babette',
  'last_name': 'Saeidi',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Coburg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180353,
  'entity_type': 'politician',
  'label': 'René Liebermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180353',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rene-liebermann',
  'first_name': 'René',
  'last_name': 'Liebermann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Grafenwöhr',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180352,
  'entity_type': 'politician',
  'label': 'Hilal Tavşancioğlu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180352',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hilal-tavsancioglu',
  'first_name': 'Hilal',
  'last_name': 'Tavşancioğlu',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1996,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': ' Archäologin und Anglistin',
  'residence': 'Bamberg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180351,
  'entity_type': 'politician',
  'label': 'Tobias Kraus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180351',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-kraus',
  'first_name': 'Tobias',
  'last_name': 'Kraus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Weiden i.d.OPf.',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180350,
  'entity_type': 'politician',
  'label': 'Alexander Völkl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180350',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-voelkl',
  'first_name': 'Alexander',
  'last_name': 'Völkl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Waldsassen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180349,
  'entity_type': 'politician',
  'label': 'Marian Janka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180349',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marian-janka',
  'first_name': 'Marian',
  'last_name': 'Janka',
  'birth_name': 'Salzbrunn ',
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Pädagoge (M.A.)',
  'residence': 'Cham',
  'occupation': 'im "Unruhestand" ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180348,
  'entity_type': 'politician',
  'label': 'Klaus Nebl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180348',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-nebl',
  'first_name': 'Klaus',
  'last_name': 'Nebl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Sinzing',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180347,
  'entity_type': 'politician',
  'label': 'Manuel Schwarzfischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180347',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-schwarzfischer',
  'first_name': 'Manuel',
  'last_name': 'Schwarzfischer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'IT-Systemelektroniker',
  'residence': 'Walderbach',
  'occupation': 'selbständiger Videoproduzent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180346,
  'entity_type': 'politician',
  'label': 'Annekathrin Winzker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180346',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annekathrin-winzker',
  'first_name': 'Annekathrin',
  'last_name': 'Winzker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ruhmannsfelden',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180345,
  'entity_type': 'politician',
  'label': 'Christoph Graw',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180345',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-graw',
  'first_name': 'Christoph',
  'last_name': 'Graw',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Griesbach i.Rottal',
  'occupation': 'LKW-Fahrer bei einem Bau-Unternehmen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180344,
  'entity_type': 'politician',
  'label': 'Dennis Neubert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180344',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-neubert',
  'first_name': 'Dennis',
  'last_name': 'Neubert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Passau',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180343,
  'entity_type': 'politician',
  'label': 'Mascha Buchwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180343',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mascha-buchwald',
  'first_name': 'Mascha',
  'last_name': 'Buchwald',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ergolding',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180342,
  'entity_type': 'politician',
  'label': 'Maximilian Spielbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180342',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-spielbauer',
  'first_name': 'Maximilian',
  'last_name': 'Spielbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'M.Sc. Volkswirtschaftslehre',
  'residence': 'Straubing',
  'occupation': 'Sachbearbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180341,
  'entity_type': 'politician',
  'label': 'Martin Fritz Neuner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180341',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-fritz-neuner',
  'first_name': 'Martin Fritz',
  'last_name': 'Neuner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Informatiker',
  'residence': 'Farchant',
  'occupation': 'Software-Entwickler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180340,
  'entity_type': 'politician',
  'label': 'Denis Holl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180340',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/denis-holl',
  'first_name': 'Denis',
  'last_name': 'Holl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Traunstein',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180339,
  'entity_type': 'politician',
  'label': 'Martin Bauhof',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180339',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-bauhof',
  'first_name': 'Martin',
  'last_name': 'Bauhof',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Sozialökonom',
  'residence': 'Bruckmühl',
  'occupation': 'Pressesprecher DIE LINKE. Bayern',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180338,
  'entity_type': 'politician',
  'label': 'Sabine Rechmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180338',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-rechmann',
  'first_name': 'Sabine',
  'last_name': 'Rechmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 185,
   'entity_type': 'party',
   'label': 'parteilos',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': 'Rosenheim',
  'occupation': 'Rechtsanwältin, Wirtschaftsmediatorin und Dozentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180337,
  'entity_type': 'politician',
  'label': 'Moritz Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180337',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/moritz-fuchs',
  'first_name': 'Moritz',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ingolstadt',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180336,
  'entity_type': 'politician',
  'label': 'Monika Spanjaart',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180336',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/monika-spanjaart',
  'first_name': 'Monika',
  'last_name': 'Spanjaart',
  'birth_name': 'Gebhardt',
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Ingenieurassistent',
  'residence': 'Zangberg',
  'occupation': 'Technischer Redakteur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180335,
  'entity_type': 'politician',
  'label': 'Elisabeth Osiander',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180335',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elisabeth-osiander',
  'first_name': 'Elisabeth',
  'last_name': 'Osiander',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Holzkirchen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180334,
  'entity_type': 'politician',
  'label': 'Christian-Linus Pauling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180334',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-linus-pauling',
  'first_name': 'Christian-Linus',
  'last_name': 'Pauling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'B.A. Visuelle Kommunikation',
  'residence': 'Ingolstadt',
  'occupation': 'Stadtrat & Web/UX Designer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180333,
  'entity_type': 'politician',
  'label': 'Nicola-Johann Schmidt- Kursch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180333',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicola-johann-schmidt-kursch',
  'first_name': 'Nicola-Johann',
  'last_name': 'Schmidt- Kursch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Erding',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180332,
  'entity_type': 'politician',
  'label': 'Malik Dialo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180332',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/malik-dialo',
  'first_name': 'Malik',
  'last_name': 'Dialo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ingolstadt',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180331,
  'entity_type': 'politician',
  'label': 'Rudolf Kreuzeder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180331',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rudolf-kreuzeder',
  'first_name': 'Rudolf',
  'last_name': 'Kreuzeder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Pflegefachkraft',
  'residence': 'Freilassing',
  'occupation': 'Altenpfleger',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180330,
  'entity_type': 'politician',
  'label': 'Sebastian Englich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180330',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-englich',
  'first_name': 'Sebastian',
  'last_name': 'Englich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Bäckermeister',
  'residence': 'Bad Tölz',
  'occupation': 'Bäckermeister in der Lebensmittel Industrie ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180329,
  'entity_type': 'politician',
  'label': 'Michael Schnitker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180329',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-schnitker',
  'first_name': 'Michael',
  'last_name': 'Schnitker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Rosenheim',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180328,
  'entity_type': 'politician',
  'label': 'Rita Braaz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180328',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rita-braaz',
  'first_name': 'Rita',
  'last_name': 'Braaz',
  'birth_name': 'Braaz',
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Selbstverteidigungstrainerin',
  'residence': 'München',
  'occupation': 'Projektleitung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180327,
  'entity_type': 'politician',
  'label': 'Michael Nitschmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180327',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-nitschmann',
  'first_name': 'Michael',
  'last_name': 'Nitschmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180326,
  'entity_type': 'politician',
  'label': 'Theo Glauch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180326',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/theo-glauch',
  'first_name': 'Theo',
  'last_name': 'Glauch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Doktor der Physik',
  'residence': 'München',
  'occupation': 'Wissenschaftler in der Klima- und Atmosphärenphysik',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180325,
  'entity_type': 'politician',
  'label': 'Franz Haslbeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180325',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-haslbeck',
  'first_name': 'Franz',
  'last_name': 'Haslbeck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180324,
  'entity_type': 'politician',
  'label': 'Wolfgang Schulz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180324',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-schulz-0',
  'first_name': 'Wolfgang',
  'last_name': 'Schulz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Softwareentwickler',
  'residence': 'München',
  'occupation': 'gewerkschaftliche Bildungsarbeit',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180323,
  'entity_type': 'politician',
  'label': 'Daniel Reuter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180323',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-reuter',
  'first_name': 'Daniel',
  'last_name': 'Reuter',
  'birth_name': 'Daniel Reuter',
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'B.A. Business Administration',
  'residence': None,
  'occupation': 'Selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180322,
  'entity_type': 'politician',
  'label': 'Adrian Kapic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180322',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adrian-kapic',
  'first_name': 'Adrian',
  'last_name': 'Kapic',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180321,
  'entity_type': 'politician',
  'label': 'Alexander Zellner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180321',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-zellner',
  'first_name': 'Alexander',
  'last_name': 'Zellner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180320,
  'entity_type': 'politician',
  'label': 'Simon Schwendiger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180320',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-schwendiger',
  'first_name': 'Simon',
  'last_name': 'Schwendiger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180319,
  'entity_type': 'politician',
  'label': 'Nicole Faulhaber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180319',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-faulhaber',
  'first_name': 'Nicole',
  'last_name': 'Faulhaber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Versicherungskauffrau',
  'residence': None,
  'occupation': 'Versicherungskauffrau',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180318,
  'entity_type': 'politician',
  'label': 'Tim Pascal Ludwig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180318',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-pascal-ludwig',
  'first_name': 'Tim Pascal',
  'last_name': 'Ludwig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Zerspanungsmechaniker',
  'residence': 'Nördlingen',
  'occupation': 'Zerspanungsmechaniker',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180317,
  'entity_type': 'politician',
  'label': 'Thomas Strobl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180317',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-strobl-0',
  'first_name': 'Thomas',
  'last_name': 'Strobl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Diplom Ingenieur Maschinenbau, Industrial Engineer, ',
  'residence': 'Bayern - Neusäß',
  'occupation': 'Senior Manager, Ingenieur, Dozent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180316,
  'entity_type': 'politician',
  'label': 'Nico Stegmayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180316',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nico-stegmayer',
  'first_name': 'Nico',
  'last_name': 'Stegmayer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Duales Studium der Betriebswirtschaftslehre, Bachelor of Arts',
  'residence': 'Dillingen an der Donau',
  'occupation': 'Betriebswirt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180315,
  'entity_type': 'politician',
  'label': 'Lutz Ingo Stammnitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180315',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lutz-ingo-stammnitz',
  'first_name': 'Lutz Ingo',
  'last_name': 'Stammnitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180314,
  'entity_type': 'politician',
  'label': 'Ralf Neugschwender',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180314',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-neugschwender',
  'first_name': 'Ralf',
  'last_name': 'Neugschwender',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180313,
  'entity_type': 'politician',
  'label': 'Tobias Dutta',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180313',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-dutta',
  'first_name': 'Tobias',
  'last_name': 'Dutta',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Würzburg',
  'occupation': 'PR- & Kommunikationsbranche',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180312,
  'entity_type': 'politician',
  'label': 'Markus Jordan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180312',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-jordan-0',
  'first_name': 'Markus',
  'last_name': 'Jordan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180311,
  'entity_type': 'politician',
  'label': 'Axel Schöll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180311',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-schoell',
  'first_name': 'Axel',
  'last_name': 'Schöll',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180310,
  'entity_type': 'politician',
  'label': 'Nicole Pfeffer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180310',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-pfeffer',
  'first_name': 'Nicole',
  'last_name': 'Pfeffer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Köchin und Diplom Betriebswirtin (FH)',
  'residence': 'Mömlingen',
  'occupation': 'Inhaber einer Unternehms-und Marketingberatung',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180309,
  'entity_type': 'politician',
  'label': 'Simon Ruck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180309',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-ruck',
  'first_name': 'Simon',
  'last_name': 'Ruck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student & Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180308,
  'entity_type': 'politician',
  'label': 'Kristina Amendt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180308',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kristina-amendt',
  'first_name': 'Kristina',
  'last_name': 'Amendt',
  'birth_name': 'Nagy',
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Diplom Betriebsingenieur FH Ungarn',
  'residence': 'Kitzingen',
  'occupation': 'Projektentwicklerin im Bereich Windenergie',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180307,
  'entity_type': 'politician',
  'label': 'Michael Keupp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180307',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-keupp',
  'first_name': 'Michael',
  'last_name': 'Keupp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180306,
  'entity_type': 'politician',
  'label': 'Maximilian Hümmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180306',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-huemmer',
  'first_name': 'Maximilian',
  'last_name': 'Hümmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Elektroanlagenmonteur',
  'residence': 'Geroda',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180305,
  'entity_type': 'politician',
  'label': 'Lukas Bohn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180305',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-bohn',
  'first_name': 'Lukas',
  'last_name': 'Bohn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Dualer Student',
  'residence': 'Goldbach',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180304,
  'entity_type': 'politician',
  'label': 'Alexander Hahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180304',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-hahn',
  'first_name': 'Alexander',
  'last_name': 'Hahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Wendelstein',
  'occupation': 'Inhaber einer Medien Agentur',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180303,
  'entity_type': 'politician',
  'label': 'Nicole Sandeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180303',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-sandeck',
  'first_name': 'Nicole',
  'last_name': 'Sandeck',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180302,
  'entity_type': 'politician',
  'label': 'Johannes Loesch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180302',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-loesch',
  'first_name': 'Johannes',
  'last_name': 'Loesch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180301,
  'entity_type': 'politician',
  'label': 'Gülden Hennemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180301',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guelden-hennemann',
  'first_name': 'Gülden',
  'last_name': 'Hennemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180300,
  'entity_type': 'politician',
  'label': 'Thomas Kestler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180300',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-kestler-0',
  'first_name': 'Thomas',
  'last_name': 'Kestler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': 'Weißenburg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180299,
  'entity_type': 'politician',
  'label': 'Oliver Kremer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180299',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-kremer',
  'first_name': 'Oliver',
  'last_name': 'Kremer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180298,
  'entity_type': 'politician',
  'label': 'Eser Polat',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180298',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eser-polat',
  'first_name': 'Eser',
  'last_name': 'Polat',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': '2. Juristisches Staatsexamen',
  'residence': 'Nürnberg',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180297,
  'entity_type': 'politician',
  'label': 'Birgit Wegner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180297',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-wegner',
  'first_name': 'Birgit',
  'last_name': 'Wegner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180296,
  'entity_type': 'politician',
  'label': 'Oliver Ramm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180296',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-ramm',
  'first_name': 'Oliver',
  'last_name': 'Ramm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180295,
  'entity_type': 'politician',
  'label': 'Sebastian Schaller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180295',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-schaller',
  'first_name': 'Sebastian',
  'last_name': 'Schaller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'staatlich geprüfter Maschinenbautechniker',
  'residence': 'Schwarzenbach an der Saale',
  'occupation': 'Maschinenbaukonstrukteur',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180294,
  'entity_type': 'politician',
  'label': 'Justus Meixner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180294',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/justus-meixner',
  'first_name': 'Justus',
  'last_name': 'Meixner',
  'birth_name': 'Meixner',
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Abitur',
  'residence': 'Coburg',
  'occupation': 'Mitarbeiter FDP im Thüringer Landtag & Student',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180293,
  'entity_type': 'politician',
  'label': 'Ralf Stöcklein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180293',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-stoecklein',
  'first_name': 'Ralf',
  'last_name': 'Stöcklein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180292,
  'entity_type': 'politician',
  'label': 'Wolfgang Karbstein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180292',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-karbstein',
  'first_name': 'Wolfgang',
  'last_name': 'Karbstein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Mitterteich',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180291,
  'entity_type': 'politician',
  'label': 'Janette Stopkova',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180291',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janette-stopkova',
  'first_name': 'Janette',
  'last_name': 'Stopkova',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180290,
  'entity_type': 'politician',
  'label': 'Raphael Dirnberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180290',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/raphael-dirnberger',
  'first_name': 'Raphael',
  'last_name': 'Dirnberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180289,
  'entity_type': 'politician',
  'label': 'Sascha Renner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180289',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-renner',
  'first_name': 'Sascha',
  'last_name': 'Renner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180288,
  'entity_type': 'politician',
  'label': 'Pascal Hanke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180288',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pascal-hanke',
  'first_name': 'Pascal',
  'last_name': 'Hanke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Bachelor of Engineering',
  'residence': 'Schönthal',
  'occupation': 'Softwareentwickler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180287,
  'entity_type': 'politician',
  'label': 'Jens Rohn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180287',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-rohn',
  'first_name': 'Jens',
  'last_name': 'Rohn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Informatiker',
  'residence': '92224 Amberg',
  'occupation': 'Principal Process Consultant',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180286,
  'entity_type': 'politician',
  'label': 'Julian Kofler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180286',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-kofler',
  'first_name': 'Julian',
  'last_name': 'Kofler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180285,
  'entity_type': 'politician',
  'label': 'Nick Kelldorfner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180285',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nick-kelldorfner',
  'first_name': 'Nick',
  'last_name': 'Kelldorfner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2002,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Pfarrkirchen',
  'occupation': 'Kaufm. Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180284,
  'entity_type': 'politician',
  'label': 'Andreas Trapp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180284',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-trapp',
  'first_name': 'Andreas',
  'last_name': 'Trapp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180283,
  'entity_type': 'politician',
  'label': 'Eva Keil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180283',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-keil',
  'first_name': 'Eva',
  'last_name': 'Keil',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2000,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Erzieherin',
  'residence': 'Rohr in Niederbayern',
  'occupation': 'Erzieherin und Psychologiestudentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180282,
  'entity_type': 'politician',
  'label': 'Michael Limmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180282',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-limmer',
  'first_name': 'Michael',
  'last_name': 'Limmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Sportfachwirt',
  'residence': 'Dingolfing',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180281,
  'entity_type': 'politician',
  'label': 'Lippold Freiherr von Rössing',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180281',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lippold-freiherr-von-roessing',
  'first_name': 'Lippold',
  'last_name': 'Freiherr von Rössing',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180280,
  'entity_type': 'politician',
  'label': 'Yannick Timo Böge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180280',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yannick-timo-boege',
  'first_name': 'Yannick Timo',
  'last_name': 'Böge',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Promovierter Naturwissenschaftler (Univ. Zürich)',
  'residence': 'Penzberg/ Landkreis Weilheim-Schongau',
  'occupation': 'Angestellter Geschäftsführer/ Gründer der Smart4Diagnostics GmbH',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180279,
  'entity_type': 'politician',
  'label': 'Dirk Peschutter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180279',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dirk-peschutter',
  'first_name': 'Dirk',
  'last_name': 'Peschutter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': '(Industrie-) Rohrnetzmeister Gas / Wasser',
  'residence': 'Eggstätt',
  'occupation': 'Bau- u. Projektleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180278,
  'entity_type': 'politician',
  'label': 'Jörg Buse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180278',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-buse',
  'first_name': 'Jörg',
  'last_name': 'Buse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Breitbrunn',
  'occupation': 'Facharzt für Radiologie',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180277,
  'entity_type': 'politician',
  'label': 'Bianca Gutöhrle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180277',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bianca-gutoehrle',
  'first_name': 'Bianca',
  'last_name': 'Gutöhrle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1995,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': '85293 Reichertshausen',
  'occupation': 'Projektkoordinatorin Automobilentwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180276,
  'entity_type': 'politician',
  'label': 'Marco Deutsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180276',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-deutsch',
  'first_name': 'Marco',
  'last_name': 'Deutsch',
  'birth_name': 'Marco Deutsch',
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Grünwald',
  'occupation': 'Medienunternehmer ',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180275,
  'entity_type': 'politician',
  'label': 'Katharina Diem',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180275',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-diem',
  'first_name': 'Katharina',
  'last_name': 'Diem',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180274,
  'entity_type': 'politician',
  'label': 'Valentin Clemente',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180274',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/valentin-clemente',
  'first_name': 'Valentin',
  'last_name': 'Clemente',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180273,
  'entity_type': 'politician',
  'label': 'Dirk Kreder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180273',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dirk-kreder',
  'first_name': 'Dirk',
  'last_name': 'Kreder',
  'birth_name': 'Kreder',
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Dr. der Naturwissenschaften, Unternehmensgründer',
  'residence': 'Holzkirchen',
  'occupation': 'Gründer und Investor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180272,
  'entity_type': 'politician',
  'label': 'Andreas Deiner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180272',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-deiner',
  'first_name': 'Andreas',
  'last_name': 'Deiner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Feuerwehrmann',
  'residence': 'Landsberg am Lech',
  'occupation': 'Beamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180271,
  'entity_type': 'politician',
  'label': 'Anne Connelly',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180271',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-connelly',
  'first_name': 'Anne',
  'last_name': 'Connelly',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Unternehmerin',
  'residence': 'Erding',
  'occupation': 'Stadträtin Erding',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180270,
  'entity_type': 'politician',
  'label': 'Nico Eberle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180270',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nico-eberle',
  'first_name': 'Nico',
  'last_name': 'Eberle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Handelsfachwirt',
  'residence': 'Buxheim',
  'occupation': 'IT-Produktmanagement',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180269,
  'entity_type': 'politician',
  'label': 'Tim Sachs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180269',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-sachs',
  'first_name': 'Tim',
  'last_name': 'Sachs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Bichl',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180268,
  'entity_type': 'politician',
  'label': 'Stefanie Stiegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180268',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-stiegler',
  'first_name': 'Stefanie',
  'last_name': 'Stiegler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Studentin an der OTH Regensburg mit der Fachrichtung Bauingenieurwesen',
  'residence': 'Haiming',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180267,
  'entity_type': 'politician',
  'label': 'Susanne Seehofer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180267',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-seehofer',
  'first_name': 'Susanne',
  'last_name': 'Seehofer',
  'birth_name': 'Seehofer',
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Betriebswirtin, Master of Science',
  'residence': 'München',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180266,
  'entity_type': 'politician',
  'label': 'Kerry Hoppe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180266',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerry-hoppe',
  'first_name': 'Kerry',
  'last_name': 'Hoppe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2001,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Studentin der Rechtswissenschaften',
  'residence': 'München',
  'occupation': 'Wiss. Mitarbeiterin und angehende Reserveoffizierin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180265,
  'entity_type': 'politician',
  'label': 'Felix Meyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180265',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-meyer',
  'first_name': 'Felix',
  'last_name': 'Meyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'München',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180264,
  'entity_type': 'politician',
  'label': 'Jennifer Kaiser-Steiner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180264',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jennifer-kaiser-steiner',
  'first_name': 'Jennifer',
  'last_name': 'Kaiser-Steiner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'M.A. BWL',
  'residence': 'München',
  'occupation': 'Referentin und Dozentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180263,
  'entity_type': 'politician',
  'label': 'Laura Reif',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180263',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laura-reif',
  'first_name': 'Laura',
  'last_name': 'Reif',
  'birth_name': 'Reif',
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Pädagogin',
  'residence': 'München',
  'occupation': 'Grundschullehramtstudentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180262,
  'entity_type': 'politician',
  'label': 'Franz Schmid',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180262',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-schmid-0',
  'first_name': 'Franz',
  'last_name': 'Schmid',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'staatlich geprüfter Kinderpfleger ',
  'residence': 'Klosterbeuren',
  'occupation': 'Kinderpfleger',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180261,
  'entity_type': 'politician',
  'label': 'Wolfgang Dröse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180261',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-droese',
  'first_name': 'Wolfgang',
  'last_name': 'Dröse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180260,
  'entity_type': 'politician',
  'label': 'Uwe Schweizer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180260',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-schweizer',
  'first_name': 'Uwe',
  'last_name': 'Schweizer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180259,
  'entity_type': 'politician',
  'label': 'Andreas Mayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180259',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-mayer-0',
  'first_name': 'Andreas',
  'last_name': 'Mayer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Luft- und Raumfahrttechnik-Ingenieur',
  'residence': 'Bad Grönenbach',
  'occupation': 'Wissenschaftlicher Referent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180258,
  'entity_type': 'politician',
  'label': 'Patrick Herkommer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180258',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-herkommer',
  'first_name': 'Patrick',
  'last_name': 'Herkommer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'gelernter Bäcker',
  'residence': 'Dirlewang',
  'occupation': 'Anlagenführer',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180257,
  'entity_type': 'politician',
  'label': 'Markus Striedl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180257',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-striedl',
  'first_name': 'Markus',
  'last_name': 'Striedl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Metallbauer, Logistikmeister',
  'residence': 'Augsburg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180256,
  'entity_type': 'politician',
  'label': 'Thomas Bauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180256',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-bauer',
  'first_name': 'Thomas',
  'last_name': 'Bauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Diplom-Informatiker (FH), MBA',
  'residence': None,
  'occupation': 'Unternehmer, Kreisrat',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180255,
  'entity_type': 'politician',
  'label': 'Simon Kuchlbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180255',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-kuchlbauer',
  'first_name': 'Simon',
  'last_name': 'Kuchlbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Historiker',
  'residence': 'Mering',
  'occupation': 'Wissenschaftlicher Referent ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180254,
  'entity_type': 'politician',
  'label': 'Ludwig Mechler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180254',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-mechler',
  'first_name': 'Ludwig',
  'last_name': 'Mechler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1950,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180253,
  'entity_type': 'politician',
  'label': 'Wolfgang von Eyb',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180253',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-von-eyb',
  'first_name': 'Wolfgang',
  'last_name': 'von Eyb',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180252,
  'entity_type': 'politician',
  'label': 'Ramona Storm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180252',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ramona-storm',
  'first_name': 'Ramona',
  'last_name': 'Storm',
  'birth_name': 'Scheppler',
  'sex': 'f',
  'year_of_birth': 1958,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Krankenschwester',
  'residence': 'Aschaffenburg ',
  'occupation': 'Stadträtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180251,
  'entity_type': 'politician',
  'label': 'Falko Keller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180251',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/falko-keller',
  'first_name': 'Falko',
  'last_name': 'Keller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Aschaffenburg',
  'occupation': 'Busfahrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180250,
  'entity_type': 'politician',
  'label': 'Alfred Schmitt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180250',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfred-schmitt',
  'first_name': 'Alfred',
  'last_name': 'Schmitt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Poppenhausen',
  'occupation': 'Architekt, Vereidigter Sachverständiger',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180249,
  'entity_type': 'politician',
  'label': 'Daniel Halemba',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180249',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-halemba',
  'first_name': 'Daniel',
  'last_name': 'Halemba',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Würzburg ',
  'occupation': 'Unternehmer ',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180248,
  'entity_type': 'politician',
  'label': 'Holger Engel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180248',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-engel',
  'first_name': 'Holger',
  'last_name': 'Engel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180247,
  'entity_type': 'politician',
  'label': 'Thomas Falk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180247',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-falk',
  'first_name': 'Thomas',
  'last_name': 'Falk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180246,
  'entity_type': 'politician',
  'label': 'Anni Benedikt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180246',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anni-benedikt',
  'first_name': 'Anni',
  'last_name': 'Benedikt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180245,
  'entity_type': 'politician',
  'label': 'Bastian Treuheit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180245',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bastian-treuheit',
  'first_name': 'Bastian',
  'last_name': 'Treuheit',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Zirndorf',
  'occupation': 'Kaufmännischer Angestellter in leitender Funktion',
  'statistic_questions': 5,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180244,
  'entity_type': 'politician',
  'label': 'Joachim Schadel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180244',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-schadel',
  'first_name': 'Joachim',
  'last_name': 'Schadel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180243,
  'entity_type': 'politician',
  'label': 'Michael Kempf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180243',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-kempf',
  'first_name': 'Michael',
  'last_name': 'Kempf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180242,
  'entity_type': 'politician',
  'label': 'Elena Roon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180242',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elena-roon',
  'first_name': 'Elena',
  'last_name': 'Roon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180241,
  'entity_type': 'politician',
  'label': 'Roland Hübscher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180241',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-huebscher',
  'first_name': 'Roland',
  'last_name': 'Hübscher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180240,
  'entity_type': 'politician',
  'label': 'Klaus-Rudolf Krestel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180240',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-rudolf-krestel',
  'first_name': 'Klaus-Rudolf',
  'last_name': 'Krestel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Betriebswirt',
  'residence': 'Nürnberg',
  'occupation': 'Stadtrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180239,
  'entity_type': 'politician',
  'label': 'Harald Meußgeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180239',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-meussgeier',
  'first_name': 'Harald',
  'last_name': 'Meußgeier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Maschinenschlosser, IT-Fachkraft',
  'residence': '96369 Weißenbrunn',
  'occupation': 'Maschinenbau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180238,
  'entity_type': 'politician',
  'label': 'Oliver Koller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180238',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-koller',
  'first_name': 'Oliver',
  'last_name': 'Koller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Kaufmann',
  'residence': 'Helmbrechts',
  'occupation': 'Standortleiter (Logistik)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180237,
  'entity_type': 'politician',
  'label': 'Matthias Machts',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180237',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-machts',
  'first_name': 'Matthias',
  'last_name': 'Machts',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Stadt- und Regionalforscher (M. Sc.)',
  'residence': 'Forchheim',
  'occupation': 'Masterabsolvent, Stadtrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180236,
  'entity_type': 'politician',
  'label': 'Mario Schulze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180236',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mario-schulze',
  'first_name': 'Mario',
  'last_name': 'Schulze',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Landkreis Bayreuth',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180235,
  'entity_type': 'politician',
  'label': 'Carina Schießl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180235',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-schiessl',
  'first_name': 'Carina',
  'last_name': 'Schießl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Medizinisch-technische Laboratoriumsassistentin',
  'residence': 'Schwarzenfeld',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180234,
  'entity_type': 'politician',
  'label': 'Christian Pfab',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180234',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-pfab',
  'first_name': 'Christian',
  'last_name': 'Pfab',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180233,
  'entity_type': 'politician',
  'label': 'Dietmar Seidl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180233',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietmar-seidl',
  'first_name': 'Dietmar',
  'last_name': 'Seidl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180232,
  'entity_type': 'politician',
  'label': 'Manfred Böhm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180232',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-boehm',
  'first_name': 'Manfred',
  'last_name': 'Böhm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Ruhstorf',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180231,
  'entity_type': 'politician',
  'label': 'Christian Breu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180231',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-breu',
  'first_name': 'Christian',
  'last_name': 'Breu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180230,
  'entity_type': 'politician',
  'label': 'Lars Pohl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180230',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-pohl',
  'first_name': 'Lars',
  'last_name': 'Pohl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180229,
  'entity_type': 'politician',
  'label': 'Andreas Füssel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180229',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-fuessel',
  'first_name': 'Andreas',
  'last_name': 'Füssel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180228,
  'entity_type': 'politician',
  'label': 'Alexander Neumeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180228',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-neumeyer',
  'first_name': 'Alexander',
  'last_name': 'Neumeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Diplom Ökonom',
  'residence': 'Seeshaupt',
  'occupation': 'Verleger und Schriftsteller',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180227,
  'entity_type': 'politician',
  'label': 'Christin Gmelch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180227',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christin-gmelch',
  'first_name': 'Christin',
  'last_name': 'Gmelch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180226,
  'entity_type': 'politician',
  'label': 'Christina Specht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180226',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christina-specht',
  'first_name': 'Christina',
  'last_name': 'Specht',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Putzbrunn',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180225,
  'entity_type': 'politician',
  'label': 'Peter Kremer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180225',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-kremer',
  'first_name': 'Peter',
  'last_name': 'Kremer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180224,
  'entity_type': 'politician',
  'label': 'Jurij Kofner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180224',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jurij-kofner',
  'first_name': 'Jurij',
  'last_name': 'Kofner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Volkswirt',
  'residence': 'Grünwald',
  'occupation': 'Wirtschaftsforscher und Fachreferent für Wirtschaft, Energie und Digitales für die AfD-Fraktion im Bayerischen Landtag',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180223,
  'entity_type': 'politician',
  'label': 'Thomas Musil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180223',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-musil',
  'first_name': 'Thomas',
  'last_name': 'Musil',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Staatlich geprüfter Elektrotechniker',
  'residence': None,
  'occupation': 'Staatlich geprüfter Elektrotechniker, Elektroniklabor DWD',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180222,
  'entity_type': 'politician',
  'label': 'Peter Banholzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180222',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-banholzer',
  'first_name': 'Peter',
  'last_name': 'Banholzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Diplom Betriebswirt',
  'residence': 'Egenhofen',
  'occupation': 'Selbständig im Immobilienbereich',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180221,
  'entity_type': 'politician',
  'label': 'Melanie Hilz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180221',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-hilz',
  'first_name': 'Melanie',
  'last_name': 'Hilz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180220,
  'entity_type': 'politician',
  'label': 'Rainer Forster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180220',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-forster',
  'first_name': 'Rainer',
  'last_name': 'Forster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180219,
  'entity_type': 'politician',
  'label': 'Jürgen Henritzi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180219',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-henritzi',
  'first_name': 'Jürgen',
  'last_name': 'Henritzi',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180218,
  'entity_type': 'politician',
  'label': 'Wolgang Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180218',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolgang-koch',
  'first_name': 'Wolgang',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180217,
  'entity_type': 'politician',
  'label': 'Thomas Baack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180217',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-baack',
  'first_name': 'Thomas',
  'last_name': 'Baack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180216,
  'entity_type': 'politician',
  'label': 'Rene Dierkes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180216',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rene-dierkes',
  'first_name': 'Rene',
  'last_name': 'Dierkes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180215,
  'entity_type': 'politician',
  'label': 'Andreas Reuter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180215',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-reuter',
  'first_name': 'Andreas',
  'last_name': 'Reuter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180214,
  'entity_type': 'politician',
  'label': 'Jitka Machyan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180214',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jitka-machyan',
  'first_name': 'Jitka',
  'last_name': 'Machyan',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'DV-Kauffrau',
  'residence': 'München',
  'occupation': 'Altenpflegerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180213,
  'entity_type': 'politician',
  'label': 'Christoph Rätscher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180213',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-raetscher',
  'first_name': 'Christoph',
  'last_name': 'Rätscher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Ing. (FH) Bauingenieurwesen',
  'residence': None,
  'occupation': 'Projektleiter Wohnungsbau / Bauherrenvertreter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180212,
  'entity_type': 'politician',
  'label': 'Christian Unzner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180212',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-unzner',
  'first_name': 'Christian',
  'last_name': 'Unzner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Diplom-Berufspädagoge',
  'residence': None,
  'occupation': 'Berufsschullehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180211,
  'entity_type': 'politician',
  'label': 'Carmen Stürmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180211',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carmen-stuermer',
  'first_name': 'Carmen',
  'last_name': 'Stürmer',
  'birth_name': 'Carmen Elisabeth Stürmer ',
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Studium MA of Arts / Regisseurin/ Kulturschaffende/ nebenberufliche Landwirtin ',
  'residence': 'Memmingen ',
  'occupation': 'Kulturschaffende Regisseurin/ Landwirtin ',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180210,
  'entity_type': 'politician',
  'label': 'Julia Probst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180210',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-probst',
  'first_name': 'Julia',
  'last_name': 'Probst',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Beraterin für Öffentlichkeitsarbeit, Beraterin für Inklusion',
  'residence': None,
  'occupation': 'Stadträtin der Stadt Weißenhorn und Inklusionsbeauftragte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180209,
  'entity_type': 'politician',
  'label': 'Markus Reichart',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180209',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-reichart',
  'first_name': 'Markus',
  'last_name': 'Reichart',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Schreinergeselle, Diplomverwaltungswirt (FH), Mediator',
  'residence': 'Kempten im Allgäu',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180208,
  'entity_type': 'politician',
  'label': 'Holger Jankovsky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180208',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-jankovsky',
  'first_name': 'Holger',
  'last_name': 'Jankovsky',
  'birth_name': 'Jankovsky',
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Sozialbetriebswirt',
  'residence': 'Kaufbeuren',
  'occupation': 'Pädagogische Leitung im Ambulant betreuten Wohnen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180207,
  'entity_type': 'politician',
  'label': 'Silvera Schmider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180207',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silvera-schmider',
  'first_name': 'Silvera',
  'last_name': 'Schmider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180206,
  'entity_type': 'politician',
  'label': 'Constantin Jahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180206',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/constantin-jahn',
  'first_name': 'Constantin',
  'last_name': 'Jahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180205,
  'entity_type': 'politician',
  'label': 'Ansgar Stich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180205',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ansgar-stich',
  'first_name': 'Ansgar',
  'last_name': 'Stich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Gymnasiallehrer (D/K/Sk)',
  'residence': 'Obernburg a. Main',
  'occupation': 'Schulleiter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180204,
  'entity_type': 'politician',
  'label': 'Anja Baier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180204',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-baier',
  'first_name': 'Anja',
  'last_name': 'Baier',
  'birth_name': 'Roth',
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Krankenschwester für Anästhesie und Intensivmedizin ',
  'residence': 'Karlstadt',
  'occupation': 'Fachkrankenschwester für Anästhesie und Intensivmedizin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180203,
  'entity_type': 'politician',
  'label': 'Wolfgang Lenhard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180203',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-lenhard',
  'first_name': 'Wolfgang',
  'last_name': 'Lenhard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Psychologe (Diplom), Sonderpädagoge (1. Staatsexamen)',
  'residence': 'Dettelbach',
  'occupation': 'Akademischer Direktor am Instit für Psychologie, Universität Würzburg',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Prof. Dr.'},
 {'id': 180202,
  'entity_type': 'politician',
  'label': 'Roland Baumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180202',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-baumann',
  'first_name': 'Roland',
  'last_name': 'Baumann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Germanistik, Geschichte, Politikwissenschaften, Soziologie, Medienpädagogik, Promotion im Fachbereich Linguistik',
  'residence': 'Dankenfeld im Steigerwald',
  'occupation': 'Gymnasiallehrer (Studiendirektor), Informationstechnischer Berater digitale Bildung',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180201,
  'entity_type': 'politician',
  'label': 'Mark Decker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180201',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mark-decker',
  'first_name': 'Mark',
  'last_name': 'Decker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Küchenleiter ( mit Abitur )',
  'residence': 'Bad Brückenau',
  'occupation': 'Küchenleiter in einer Bio-Küche',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180200,
  'entity_type': 'politician',
  'label': 'Monika Hartl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180200',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/monika-hartl',
  'first_name': 'Monika',
  'last_name': 'Hartl',
  'birth_name': 'Hartl',
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Sonderpädagogin',
  'residence': 'Aschaffenburg',
  'occupation': 'Förderschullehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180199,
  'entity_type': 'politician',
  'label': 'Martin Mändl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180199',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-maendl',
  'first_name': 'Martin',
  'last_name': 'Mändl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Wendelstein',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180198,
  'entity_type': 'politician',
  'label': 'Aaron Mühlendyck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180198',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/aaron-muehlendyck',
  'first_name': 'Aaron',
  'last_name': 'Mühlendyck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diakon und Pflegewissenschaftler',
  'residence': 'Altdorf bei Nürnberg',
  'occupation': 'Lehrer für Pflege',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180197,
  'entity_type': 'politician',
  'label': 'Monika Tremel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180197',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/monika-tremel',
  'first_name': 'Monika',
  'last_name': 'Tremel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Dipl.-Theologin',
  'residence': 'Kalchreuth',
  'occupation': 'Pastoralreferentin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180196,
  'entity_type': 'politician',
  'label': 'Philipp Hörber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180196',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-hoerber',
  'first_name': 'Philipp',
  'last_name': 'Hörber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Weiltingen',
  'occupation': 'selbst. Unternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180195,
  'entity_type': 'politician',
  'label': 'Ute Möller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180195',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ute-moeller',
  'first_name': 'Ute',
  'last_name': 'Möller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Nürnberg',
  'occupation': 'Journalistin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180194,
  'entity_type': 'politician',
  'label': 'Magdalena Pröbstl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180194',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/magdalena-proebstl',
  'first_name': 'Magdalena',
  'last_name': 'Pröbstl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'M. A. (Ital. Philologie, Politikwissenschaft, DaF)',
  'residence': 'Stadtsteinach',
  'occupation': 'Kaufmännische Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180193,
  'entity_type': 'politician',
  'label': 'Susann Freiburg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180193',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susann-freiburg',
  'first_name': 'Susann',
  'last_name': 'Freiburg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Juristin; Gesellin im Friseurhandwerk',
  'residence': 'Lichtenfels',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180192,
  'entity_type': 'politician',
  'label': 'Swanti Bräsecke-Bartsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180192',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/swanti-braesecke-bartsch',
  'first_name': 'Swanti',
  'last_name': 'Bräsecke-Bartsch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Grafikdesignerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180191,
  'entity_type': 'politician',
  'label': 'Martin Distler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180191',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-distler',
  'first_name': 'Martin',
  'last_name': 'Distler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom-Volkswirt ',
  'residence': 'Eggolsheim ',
  'occupation': 'Diplom-Volkswirt',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180190,
  'entity_type': 'politician',
  'label': 'Susanne Esslinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180190',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-esslinger',
  'first_name': 'Susanne',
  'last_name': 'Esslinger',
  'birth_name': 'Esslinger',
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom-Kauffrau und Diplom-Psychogerontologin',
  'residence': 'Meeder',
  'occupation': 'Professorin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Prof. Dr.'},
 {'id': 180189,
  'entity_type': 'politician',
  'label': 'Tim-Luca Rosenheimer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180189',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-luca-rosenheimer',
  'first_name': 'Tim-Luca',
  'last_name': 'Rosenheimer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Bamberg',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180188,
  'entity_type': 'politician',
  'label': 'Laura Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180188',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laura-weber',
  'first_name': 'Laura',
  'last_name': 'Weber',
  'birth_name': 'Weber',
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Energietechnik / Umwelt-Ingenieurin (Master)',
  'residence': 'Weiden',
  'occupation': 'Geschäftsführerin Projektentwicklungsgesellschaft Erneuerbare Energien/ Bürgerenergie',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180187,
  'entity_type': 'politician',
  'label': 'Hannah Quaas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180187',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hannah-quaas',
  'first_name': 'Hannah',
  'last_name': 'Quaas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180186,
  'entity_type': 'politician',
  'label': 'Merten Niebelschütz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180186',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/merten-niebelschuetz',
  'first_name': 'Merten',
  'last_name': 'Niebelschütz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180185,
  'entity_type': 'politician',
  'label': 'Nicole Brock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180185',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-brock',
  'first_name': 'Nicole',
  'last_name': 'Brock',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin (FH)',
  'residence': 'Freystadt',
  'occupation': 'Bauamtsleiterin ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180184,
  'entity_type': 'politician',
  'label': 'Stefan Zeller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180184',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-zeller',
  'first_name': 'Stefan',
  'last_name': 'Zeller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Furth im Wald',
  'occupation': 'Gastronom',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180183,
  'entity_type': 'politician',
  'label': 'Mia Goller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180183',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mia-goller',
  'first_name': 'Mia',
  'last_name': 'Goller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Journalistin',
  'residence': 'Falkenberg',
  'occupation': 'Fachjournalistin Landwirtschaft und Ländliche Entwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180182,
  'entity_type': 'politician',
  'label': 'Marc Kuhnt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180182',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marc-kuhnt',
  'first_name': 'Marc',
  'last_name': 'Kuhnt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Vorsorgespezialist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180181,
  'entity_type': 'politician',
  'label': 'Johannes Hunger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180181',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-hunger',
  'first_name': 'Johannes',
  'last_name': 'Hunger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2002,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Kumhausen',
  'occupation': 'Bürosachbearbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180180,
  'entity_type': 'politician',
  'label': 'Daniel Elsner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180180',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-elsner',
  'first_name': 'Daniel',
  'last_name': 'Elsner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'B. Eng. Verfahrenstechnik, M. Sc. Wirtschaftsingenieurwesen',
  'residence': 'Kelheim',
  'occupation': 'Ingenieur für Umweltanlagen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180179,
  'entity_type': 'politician',
  'label': 'Tobias Martin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180179',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-martin',
  'first_name': 'Tobias',
  'last_name': 'Martin',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Redaktionsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180178,
  'entity_type': 'politician',
  'label': 'Andrea Schulte-Krauss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180178',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-schulte-krauss',
  'first_name': 'Andrea',
  'last_name': 'Schulte-Krauss',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Personalfachkauffrau (IHK), M.A. Geschichte',
  'residence': 'Pentenried',
  'occupation': 'Verwaltungsangestellte',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180177,
  'entity_type': 'politician',
  'label': 'Martina Thalmayr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180177',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-thalmayr',
  'first_name': 'Martina',
  'last_name': 'Thalmayr',
  'birth_name': 'Müller',
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom Betriebswirtin',
  'residence': 'Bad Aibling',
  'occupation': 'Referentin für regionale Vermarktung',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180176,
  'entity_type': 'politician',
  'label': 'Valentin Weigel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180176',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/valentin-weigel',
  'first_name': 'Valentin',
  'last_name': 'Weigel',
  'birth_name': 'Valentin Weigel',
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Rosenheim',
  'occupation': 'Jurist',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180175,
  'entity_type': 'politician',
  'label': 'Marina Abstreiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180175',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marina-abstreiter',
  'first_name': 'Marina',
  'last_name': 'Abstreiter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Gymnasiallehrerin Mathe/Physik',
  'residence': 'Schrobenhausen',
  'occupation': 'wissenschaftliche Mitarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180174,
  'entity_type': 'politician',
  'label': 'Bianca Hegmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180174',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bianca-hegmann',
  'first_name': 'Bianca',
  'last_name': 'Hegmann',
  'birth_name': 'Giesel',
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom-Handelslehrerin',
  'residence': 'Polling Lkr. Mühlldorf',
  'occupation': 'Berufsschullehrerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180173,
  'entity_type': 'politician',
  'label': 'Merlin Nagel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180173',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/merlin-nagel',
  'first_name': 'Merlin',
  'last_name': 'Nagel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Ingenieur, B.Eng.',
  'residence': 'Ingolstadt',
  'occupation': 'Elektrotechnikingenieur (Automobilindustrie)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180172,
  'entity_type': 'politician',
  'label': 'Andreas Birzele',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180172',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-birzele',
  'first_name': 'Andreas',
  'last_name': 'Birzele',
  'birth_name': 'Birzele',
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Schreinermeister',
  'residence': 'Hörbach (Gemeinde Althegnenberg)',
  'occupation': 'Schreinermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180171,
  'entity_type': 'politician',
  'label': 'Laetitia Wegmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180171',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laetitia-wegmann',
  'first_name': 'Laetitia',
  'last_name': 'Wegmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2003,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Taufkirchen ',
  'occupation': 'Heilerziehungshelferin',
  'statistic_questions': 5,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180170,
  'entity_type': 'politician',
  'label': 'Simone Zink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180170',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simone-zink',
  'first_name': 'Simone',
  'last_name': 'Zink',
  'birth_name': 'Zink',
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Bankkauffrau',
  'residence': 'Eichstätt',
  'occupation': 'Veranstaltungsmanagerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180169,
  'entity_type': 'politician',
  'label': 'Martin Modlinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180169',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-modlinger',
  'first_name': 'Martin',
  'last_name': 'Modlinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Dachau',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180168,
  'entity_type': 'politician',
  'label': 'Jakob Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180168',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jakob-koch',
  'first_name': 'Jakob',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Eurasburg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180167,
  'entity_type': 'politician',
  'label': 'Peter Áldozó',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180167',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-aldozo',
  'first_name': 'Peter',
  'last_name': 'Áldozó',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180166,
  'entity_type': 'politician',
  'label': 'Julia Post',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180166',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-post',
  'first_name': 'Julia',
  'last_name': 'Post',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Hotelfachfrau und Studium der Politikwissenschaft (M. A.)',
  'residence': 'München-Pasing',
  'occupation': 'Sozialunternehmerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180165,
  'entity_type': 'politician',
  'label': 'Fabian Sauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180165',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-sauer',
  'first_name': 'Fabian',
  'last_name': 'Sauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Journalist ',
  'residence': 'München-Bogenhausen (OT Englschalking) ',
  'occupation': 'Journalist und Kommunikationsexperte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180164,
  'entity_type': 'politician',
  'label': 'Christine Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180164',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christine-mueller',
  'first_name': 'Christine',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': 'München',
  'occupation': 'Gymnasiallehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180163,
  'entity_type': 'politician',
  'label': 'Michael Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180163',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-ziegler-0',
  'first_name': 'Michael',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180162,
  'entity_type': 'politician',
  'label': 'Aynur Kir',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180162',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/aynur-kir',
  'first_name': 'Aynur',
  'last_name': 'Kir',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180161,
  'entity_type': 'politician',
  'label': 'Thomas Frank',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180161',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-frank-0',
  'first_name': 'Thomas',
  'last_name': 'Frank',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Dipl. Sozialpädagoge (FH), Master of Socialmanagement (M.S.M)',
  'residence': 'Rosenheim',
  'occupation': 'Dienststellenleitung JWGH München Süd',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180160,
  'entity_type': 'politician',
  'label': 'Ivo Holzinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180160',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ivo-holzinger',
  'first_name': 'Ivo',
  'last_name': 'Holzinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Dipl.-Jur.(Univ.)',
  'residence': 'Memmingen',
  'occupation': 'Richter, Stadtrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180159,
  'entity_type': 'politician',
  'label': 'Hannah Fischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180159',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hannah-fischer',
  'first_name': 'Hannah',
  'last_name': 'Fischer',
  'birth_name': 'Hefermehl',
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin',
  'residence': 'Marktoberdorf ',
  'occupation': 'Büroleiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180158,
  'entity_type': 'politician',
  'label': 'Hans Jürgen Ulm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180158',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-juergen-ulm',
  'first_name': 'Hans Jürgen',
  'last_name': 'Ulm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Financial Consultant (FSFM)',
  'residence': 'Kempten',
  'occupation': 'Bankkaufmann',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180157,
  'entity_type': 'politician',
  'label': 'Susanne Sorgenfrei',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180157',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-sorgenfrei',
  'first_name': 'Susanne',
  'last_name': 'Sorgenfrei',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180156,
  'entity_type': 'politician',
  'label': 'Gülüzar Starizin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180156',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gueluezar-starizin',
  'first_name': 'Gülüzar',
  'last_name': 'Starizin',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180155,
  'entity_type': 'politician',
  'label': 'Fabian Wamser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180155',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-wamser',
  'first_name': 'Fabian',
  'last_name': 'Wamser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Rettungssanitäter und Jurist',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180154,
  'entity_type': 'politician',
  'label': 'Florian Freund',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180154',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-freund',
  'first_name': 'Florian',
  'last_name': 'Freund',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180153,
  'entity_type': 'politician',
  'label': 'Anna Rasehorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180153',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-rasehorn',
  'first_name': 'Anna',
  'last_name': 'Rasehorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Altenpflegehelferin, Studentin der Rechtswissenschaften',
  'residence': 'Augsburg',
  'occupation': 'Altenpflegehelferin und Stadträtin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180152,
  'entity_type': 'politician',
  'label': 'Alexander Kolbow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180152',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-kolbow',
  'first_name': 'Alexander',
  'last_name': 'Kolbow',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Sozialpädagoge (FH)',
  'residence': 'Würzburg',
  'occupation': 'Geschäftsführender Diözesansekretär/Bildungsreferent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180151,
  'entity_type': 'politician',
  'label': 'Stefan Rottmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180151',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-rottmann',
  'first_name': 'Stefan',
  'last_name': 'Rottmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Bankkaufmann, Studium zum Bankfachwirt',
  'residence': 'Mainberg',
  'occupation': '1. Bürgermeister Großgemeinde Schonungen seit 2012',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180150,
  'entity_type': 'politician',
  'label': 'Samuel Herrmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180150',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/samuel-herrmann',
  'first_name': 'Samuel',
  'last_name': 'Herrmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'B.A. im Polizeivollzugsdienst',
  'residence': 'Kleinwallstadt',
  'occupation': 'Polizeikommissar',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180149,
  'entity_type': 'politician',
  'label': 'Pamela Nembach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180149',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pamela-nembach',
  'first_name': 'Pamela',
  'last_name': 'Nembach',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180148,
  'entity_type': 'politician',
  'label': 'Eva-Maria Weimann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180148',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-maria-weimann',
  'first_name': 'Eva-Maria',
  'last_name': 'Weimann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180147,
  'entity_type': 'politician',
  'label': 'Johanna Bamberg-Reinwand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180147',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-bamberg-reinwand',
  'first_name': 'Johanna',
  'last_name': 'Bamberg-Reinwand',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180146,
  'entity_type': 'politician',
  'label': 'Markus Mahl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180146',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-mahl',
  'first_name': 'Markus',
  'last_name': 'Mahl',
  'birth_name': 'Mahl',
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Hilpoltstein',
  'occupation': 'Erster Bürgermeister',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180145,
  'entity_type': 'politician',
  'label': 'Claudia Belzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180145',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-belzer',
  'first_name': 'Claudia',
  'last_name': 'Belzer',
  'birth_name': 'Belzer',
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Berufspädagogin (Univ.), Lehrkraft für berufsbildende Schulen im höheren Dienst',
  'residence': 'Herzogenaurach',
  'occupation': 'Lehrkraft in der Schulleitung und an übergeordneter Behörde',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180144,
  'entity_type': 'politician',
  'label': 'Kathrin Pollack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180144',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kathrin-pollack',
  'first_name': 'Kathrin',
  'last_name': 'Pollack',
  'birth_name': 'Dorn',
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Beamtin',
  'residence': 'Ansbach',
  'occupation': 'Personalratsvorsitzende',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180143,
  'entity_type': 'politician',
  'label': 'Holger Grießhammer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180143',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-griesshammer',
  'first_name': 'Holger',
  'last_name': 'Grießhammer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180142,
  'entity_type': 'politician',
  'label': 'Sabine Gross',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180142',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-gross',
  'first_name': 'Sabine',
  'last_name': 'Gross',
  'birth_name': 'Gross',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Kronach',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180141,
  'entity_type': 'politician',
  'label': 'Daniel Schreiner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180141',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-schreiner',
  'first_name': 'Daniel',
  'last_name': 'Schreiner',
  'birth_name': 'Schreiner',
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Koch, Rettungsassistent und Berufssoldat',
  'residence': 'Sparneck',
  'occupation': 'Hauptmann der Bundeswehr ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180140,
  'entity_type': 'politician',
  'label': 'Richard Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/richard-schmidt',
  'first_name': 'Richard',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'B. Sc. in Physik',
  'residence': None,
  'occupation': 'Student (Master Angewandte Mathematik und Physik)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180139,
  'entity_type': 'politician',
  'label': 'Stefan Sauerteig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180139',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-sauerteig',
  'first_name': 'Stefan',
  'last_name': 'Sauerteig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Realschullehrer',
  'residence': 'Coburg',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180138,
  'entity_type': 'politician',
  'label': 'Eva Jutzler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180138',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-jutzler',
  'first_name': 'Eva',
  'last_name': 'Jutzler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180137,
  'entity_type': 'politician',
  'label': 'Ronni Arendt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180137',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ronni-arendt',
  'first_name': 'Ronni',
  'last_name': 'Arendt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180136,
  'entity_type': 'politician',
  'label': 'Nicole Bäumler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180136',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-baeumler',
  'first_name': 'Nicole',
  'last_name': 'Bäumler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Lehrerin (Lehramt für Gymnasium und Berufliches Lehramt)',
  'residence': 'Schirmitz',
  'occupation': 'Mitglied des Bayerischen Landtags',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180135,
  'entity_type': 'politician',
  'label': 'Karl Georg Haubelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180135',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-georg-haubelt',
  'first_name': 'Karl Georg',
  'last_name': 'Haubelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': 'Wiesau',
  'occupation': 'Hochschullehrer/Regierungsdirektor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180134,
  'entity_type': 'politician',
  'label': 'Sebastian Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180134',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-koch',
  'first_name': 'Sebastian',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Finanzwirt',
  'residence': 'Wenzenbach',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180133,
  'entity_type': 'politician',
  'label': 'Rebecca Frank',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180133',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rebecca-frank',
  'first_name': 'Rebecca',
  'last_name': 'Frank',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180132,
  'entity_type': 'politician',
  'label': 'Steve Brachwitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180132',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steve-brachwitz',
  'first_name': 'Steve',
  'last_name': 'Brachwitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Gesundheits- und Krankenpfleger für die Intensivpflege und Anästhesie',
  'residence': 'Roding',
  'occupation': 'Fachkrankenpfleger',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180131,
  'entity_type': 'politician',
  'label': 'Marvin Kliem',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180131',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marvin-kliem',
  'first_name': 'Marvin',
  'last_name': 'Kliem',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': 'Straubing',
  'occupation': 'Pressesprecher und Wissenschaftlicher Mitarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180130,
  'entity_type': 'politician',
  'label': 'Fabian Gruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180130',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-gruber',
  'first_name': 'Fabian',
  'last_name': 'Gruber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180129,
  'entity_type': 'politician',
  'label': 'Josef Süß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180129',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-suess',
  'first_name': 'Josef',
  'last_name': 'Süß',
  'birth_name': 'Süß',
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Sozialpädagoge, Traumapädagoge, AAT/CT(R)-Trainer, Erlebnistherapeut, Sozialmanager i. A.',
  'residence': 'Waldkirchen',
  'occupation': 'Teamleitung einer stationären heilpädagogischen Wohngruppe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180128,
  'entity_type': 'politician',
  'label': 'Johannes Just',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180128',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-just',
  'first_name': 'Johannes',
  'last_name': 'Just',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Passau',
  'occupation': 'Seniorenheimleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180127,
  'entity_type': 'politician',
  'label': 'Luisa Haag',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180127',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luisa-haag',
  'first_name': 'Luisa',
  'last_name': 'Haag',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Gymnasiallehrerin',
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180126,
  'entity_type': 'politician',
  'label': 'Christiane Feichtmeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180126',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-feichtmeier',
  'first_name': 'Christiane',
  'last_name': 'Feichtmeier',
  'birth_name': 'Kern ',
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Tutzing ',
  'occupation': 'Polizeihauptkommissarin ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180125,
  'entity_type': 'politician',
  'label': 'Heinz Oesterle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180125',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-oesterle',
  'first_name': 'Heinz',
  'last_name': 'Oesterle',
  'birth_name': 'Oesterle',
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Wirtschaftsingenieur',
  'residence': '83620 Feldkirchen-Westerham',
  'occupation': 'ehem. Obere Führungskraft Siemens AG jetzt Pensionist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180124,
  'entity_type': 'politician',
  'label': 'Siegfried Sibinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180124',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/siegfried-sibinger',
  'first_name': 'Siegfried',
  'last_name': 'Sibinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180123,
  'entity_type': 'politician',
  'label': 'Christine Himmelberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180123',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christine-himmelberg',
  'first_name': 'Christine',
  'last_name': 'Himmelberg',
  'birth_name': 'Himmelberg',
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Master of Arts, Politics & Society',
  'residence': 'Taufkirchen',
  'occupation': 'Projektmanagerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180122,
  'entity_type': 'politician',
  'label': 'Florian Schardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180122',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-schardt',
  'first_name': 'Florian',
  'last_name': 'Schardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': 'Ottobrunn',
  'occupation': 'IT-Unternehmer',
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180121,
  'entity_type': 'politician',
  'label': 'Sea Altmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180121',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sea-altmann',
  'first_name': 'Sea',
  'last_name': 'Altmann',
  'birth_name': None,
  'sex': 'd',
  'year_of_birth': 1994,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'B. A. Governance and public policy Staatswissenschaften',
  'residence': 'Mühldorf',
  'occupation': 'WiMi Florian Ritter MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180120,
  'entity_type': 'politician',
  'label': 'Bruno Peetroons',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180120',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bruno-peetroons',
  'first_name': 'Bruno',
  'last_name': 'Peetroons',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Ausbildung ',
  'residence': 'Holzkirchen ',
  'occupation': 'Bankkaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180119,
  'entity_type': 'politician',
  'label': 'Amir Sahuric',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180119',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/amir-sahuric',
  'first_name': 'Amir',
  'last_name': 'Sahuric',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180118,
  'entity_type': 'politician',
  'label': 'Markus Rößler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180118',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-roessler',
  'first_name': 'Markus',
  'last_name': 'Rößler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180117,
  'entity_type': 'politician',
  'label': 'Daniel Liebetruth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180117',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-liebetruth',
  'first_name': 'Daniel',
  'last_name': 'Liebetruth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Gymnasiallehrer (Mathe, Latein, Ethik/Philosophie, Informatik)',
  'residence': 'Germering',
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180116,
  'entity_type': 'politician',
  'label': 'Alina Graf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180116',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alina-graf',
  'first_name': 'Alina',
  'last_name': 'Graf',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Biotechnologin',
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180115,
  'entity_type': 'politician',
  'label': 'Benedikt Klingbeil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180115',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-klingbeil',
  'first_name': 'Benedikt',
  'last_name': 'Klingbeil',
  'birth_name': 'Benedikt Klingbeil ',
  'sex': 'm',
  'year_of_birth': 2004,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Erding ',
  'occupation': 'Ich studiere Dual bei der Stadt München ',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180114,
  'entity_type': 'politician',
  'label': 'Michelle Harrer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180114',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michelle-harrer',
  'first_name': 'Michelle',
  'last_name': 'Harrer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Maschinenbaumechanikermeisterin',
  'residence': 'Kipfenberg',
  'occupation': 'Betriebsratsvorsitzende',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180113,
  'entity_type': 'politician',
  'label': 'Hubert Böck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180113',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hubert-boeck',
  'first_name': 'Hubert',
  'last_name': 'Böck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Notfallsanitäter',
  'residence': 'Markt Indersdorf',
  'occupation': 'Notfallsanitäter/ Leiter Rettungsdienst',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180112,
  'entity_type': 'politician',
  'label': 'Markus Aicher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180112',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-aicher',
  'first_name': 'Markus',
  'last_name': 'Aicher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180111,
  'entity_type': 'politician',
  'label': 'Benedikt Hoechner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180111',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benedikt-hoechner',
  'first_name': 'Benedikt',
  'last_name': 'Hoechner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Master of Science',
  'residence': 'Murnau a. Staffelsee',
  'occupation': 'Software-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180110,
  'entity_type': 'politician',
  'label': 'Jürgen Gastel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180110',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-gastel',
  'first_name': 'Jürgen',
  'last_name': 'Gastel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Handelsfachwirt',
  'residence': 'Neuötting',
  'occupation': 'Inhaber Versicherungsagentur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180109,
  'entity_type': 'politician',
  'label': 'Daniela Di Benedetto',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180109',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniela-di-benedetto',
  'first_name': 'Daniela',
  'last_name': 'Di Benedetto',
  'birth_name': 'Di Benedetto',
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Ökonomin und Doktorin der Statistik',
  'residence': 'Ismaning',
  'occupation': 'Globale strategische Einkäuferin im Finanzsektor',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180108,
  'entity_type': 'politician',
  'label': 'Lars Mentrup',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180108',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-mentrup',
  'first_name': 'Lars',
  'last_name': 'Mentrup',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Technomathematiker',
  'residence': 'München',
  'occupation': 'Stadtrat München',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180107,
  'entity_type': 'politician',
  'label': 'Katja Weitzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180107',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katja-weitzel',
  'first_name': 'Katja',
  'last_name': 'Weitzel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180106,
  'entity_type': 'politician',
  'label': 'Alexander Friedrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-friedrich',
  'first_name': 'Alexander',
  'last_name': 'Friedrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180105,
  'entity_type': 'politician',
  'label': 'Thorsten Freudenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180105',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thorsten-freudenberger',
  'first_name': 'Thorsten',
  'last_name': 'Freudenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Gymnasiallehrer',
  'residence': 'Neu-Ulm',
  'occupation': 'Landrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180104,
  'entity_type': 'politician',
  'label': 'Andreas Kaufmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180104',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kaufmann',
  'first_name': 'Andreas',
  'last_name': 'Kaufmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180103,
  'entity_type': 'politician',
  'label': 'Joachim Konrad',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180103',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-konrad',
  'first_name': 'Joachim',
  'last_name': 'Konrad',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswissenschaftler',
  'residence': 'Altusried',
  'occupation': 'Erster Bürgermeister ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180102,
  'entity_type': 'politician',
  'label': 'Peter Wachler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180102',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-wachler',
  'first_name': 'Peter',
  'last_name': 'Wachler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180101,
  'entity_type': 'politician',
  'label': 'Jenny Schack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180101',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jenny-schack',
  'first_name': 'Jenny',
  'last_name': 'Schack',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180100,
  'entity_type': 'politician',
  'label': 'Manuel Knoll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180100',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-knoll',
  'first_name': 'Manuel',
  'last_name': 'Knoll',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Master of Arts',
  'residence': 'Höchstädt',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180099,
  'entity_type': 'politician',
  'label': 'Andrea Behr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180099',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-behr',
  'first_name': 'Andrea',
  'last_name': 'Behr',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180098,
  'entity_type': 'politician',
  'label': 'Björn Jungbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180098',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-jungbauer',
  'first_name': 'Björn',
  'last_name': 'Jungbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Dipl. Verwaltungswirt (FH)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180097,
  'entity_type': 'politician',
  'label': 'Martina Gießübel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180097',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-giessuebel',
  'first_name': 'Martina',
  'last_name': 'Gießübel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Groß- und Außenhandleskauffrau, Sozialversicherungsfachangestellte',
  'residence': 'Grafenrheinfeld',
  'occupation': 'Sozialversicherungsfachangestellte',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180096,
  'entity_type': 'politician',
  'label': 'Martin Stock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180096',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-stock',
  'first_name': 'Martin',
  'last_name': 'Stock',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180095,
  'entity_type': 'politician',
  'label': 'Werner Stieglitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180095',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/werner-stieglitz',
  'first_name': 'Werner',
  'last_name': 'Stieglitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Bank- und Sparkassenbetriebswirt',
  'residence': None,
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180094,
  'entity_type': 'politician',
  'label': 'Helmut Schnotz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180094',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helmut-schnotz',
  'first_name': 'Helmut',
  'last_name': 'Schnotz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Bankbetriebswirt-Management ',
  'residence': None,
  'occupation': 'Bürgermeister ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180093,
  'entity_type': 'politician',
  'label': 'Thomas Pirner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180093',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-pirner',
  'first_name': 'Thomas',
  'last_name': 'Pirner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Handwerksmeister',
  'residence': 'Nürnberg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180092,
  'entity_type': 'politician',
  'label': 'Kristan von Waldenfels',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180092',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kristan-von-waldenfels',
  'first_name': 'Kristan',
  'last_name': 'von Waldenfels',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': 'Lichtenberg',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180091,
  'entity_type': 'politician',
  'label': 'Franc Dierl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180091',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franc-dierl',
  'first_name': 'Franc',
  'last_name': 'Dierl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180090,
  'entity_type': 'politician',
  'label': 'Jürgen Eberwein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180090',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-eberwein',
  'first_name': 'Jürgen',
  'last_name': 'Eberwein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'Kriminalhauptkommissar',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180089,
  'entity_type': 'politician',
  'label': 'Patrick Grossmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180089',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-grossmann',
  'first_name': 'Patrick',
  'last_name': 'Grossmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180088,
  'entity_type': 'politician',
  'label': 'Stefan Ebner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180088',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ebner',
  'first_name': 'Stefan',
  'last_name': 'Ebner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180087,
  'entity_type': 'politician',
  'label': 'Stefan Meyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180087',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-meyer',
  'first_name': 'Stefan',
  'last_name': 'Meyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Bankbetriebswirt',
  'residence': 'Vilshofen an der Donau',
  'occupation': 'Bankbetriebswirt (Leiter Interne Revision)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180086,
  'entity_type': 'politician',
  'label': 'Josef Heisl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180086',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-heisl',
  'first_name': 'Josef',
  'last_name': 'Heisl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180085,
  'entity_type': 'politician',
  'label': 'Christian Bernreiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180085',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-bernreiter',
  'first_name': 'Christian',
  'last_name': 'Bernreiter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Hengersberg',
  'occupation': 'Staatsminister für Wohnen, Bau und Verkehr, MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180084,
  'entity_type': 'politician',
  'label': 'Konrad Baur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180084',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/konrad-baur',
  'first_name': 'Konrad',
  'last_name': 'Baur',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': 'Traunstein',
  'occupation': 'IT-Projektmanager / Product Owner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180083,
  'entity_type': 'politician',
  'label': 'Sebastian Friesinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180083',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-friesinger',
  'first_name': 'Sebastian',
  'last_name': 'Friesinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Bankangestellter, Projektbetreuer, Landwirt',
  'residence': 'Schacha, Gemeinde Albaching',
  'occupation': 'Bankangestellter, Projektbetreuer, Landwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180082,
  'entity_type': 'politician',
  'label': 'Daniel Artmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180082',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-artmann',
  'first_name': 'Daniel',
  'last_name': 'Artmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'M.A. Unternehmensrestrukturierung & -sanierung',
  'residence': 'Rosenheim ',
  'occupation': 'Regionalleiter Bayern Beratungsunternehmen; 2. Bürgermeister Rosenheim ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180081,
  'entity_type': 'politician',
  'label': 'Maximilian Böltl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180081',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-boeltl',
  'first_name': 'Maximilian',
  'last_name': 'Böltl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'BWL-Studium an der LMU mit Abschluss als Diplom-Kaufmann',
  'residence': 'Kirchheim',
  'occupation': 'Bürgermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180080,
  'entity_type': 'politician',
  'label': 'Sascha Schnürer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180080',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-schnuerer',
  'first_name': 'Sascha',
  'last_name': 'Schnürer',
  'birth_name': 'Sascha Schnürer',
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Master of Business Administration',
  'residence': 'Obertaufkirchen ',
  'occupation': 'Geschäftsführender Gesellschafter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180079,
  'entity_type': 'politician',
  'label': 'Thomas Holz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180079',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-holz',
  'first_name': 'Thomas',
  'last_name': 'Holz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Erster Bürgermeister der Gemeinde Kochel a. See',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180078,
  'entity_type': 'politician',
  'label': 'Susanne Hornberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180078',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-hornberger',
  'first_name': 'Susanne',
  'last_name': 'Hornberger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Leiterin Kommunikation, Öffentlichkeitsarbeit, Onlineredakion bei der Hans-Seiedel-Stiftung',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180077,
  'entity_type': 'politician',
  'label': 'Alexander Dietrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180077',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-dietrich',
  'first_name': 'Alexander',
  'last_name': 'Dietrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 3,
   'entity_type': 'party',
   'label': 'CSU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/3'},
  'party_past': None,
  'education': 'Volljurist/Dr. jur.',
  'residence': 'München-Moosach',
  'occupation': 'Oberstaatsanwalt/Berufsmäßiger Stadtrat a. D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180076,
  'entity_type': 'politician',
  'label': 'Jochen Totzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180076',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-totzer',
  'first_name': 'Jochen',
  'last_name': 'Totzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Garten und Landschaftsbau',
  'residence': 'Fürth',
  'occupation': 'Vertrieb und Marketing',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180075,
  'entity_type': 'politician',
  'label': 'Christian Wallerer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180075',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-wallerer',
  'first_name': 'Christian',
  'last_name': 'Wallerer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180074,
  'entity_type': 'politician',
  'label': 'Georg Gräff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180074',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-graeff',
  'first_name': 'Georg',
  'last_name': 'Gräff',
  'birth_name': 'Gräff',
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Einzelhandelskaufmann',
  'residence': 'Alsbach-Hähnlein',
  'occupation': 'Selbstständiger Unternehmer ',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180073,
  'entity_type': 'politician',
  'label': 'Ole Heide',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180073',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ole-heide',
  'first_name': 'Ole',
  'last_name': 'Heide',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'ScrumMaster',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180072,
  'entity_type': 'politician',
  'label': 'Maria Stockhaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180072',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-stockhaus',
  'first_name': 'Maria',
  'last_name': 'Stockhaus',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Diplom',
  'residence': 'Darmstadt',
  'occupation': 'Verkehrswirtin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180071,
  'entity_type': 'politician',
  'label': 'Hanna Mohr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180071',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hanna-mohr',
  'first_name': 'Hanna',
  'last_name': 'Mohr',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ginsheim-Gustavsburg',
  'occupation': 'Ingenieurin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180070,
  'entity_type': 'politician',
  'label': 'Fabian Kalbskopf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180070',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-kalbskopf',
  'first_name': 'Fabian',
  'last_name': 'Kalbskopf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Rodgau',
  'occupation': 'Brauer und Mälzer ',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180069,
  'entity_type': 'politician',
  'label': 'Edgar Schultheiß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180069',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edgar-schultheiss',
  'first_name': 'Edgar',
  'last_name': 'Schultheiß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Personalfachkaufmann',
  'residence': 'Neu-Isenburg',
  'occupation': 'Personalsachbearbeiter',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180068,
  'entity_type': 'politician',
  'label': 'Xenia Jakel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180068',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/xenia-jakel',
  'first_name': 'Xenia',
  'last_name': 'Jakel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Archäologin, Studium Vor- und Frühgeschichte und Archäologie und Kulturgeschichte des vorderen Orients',
  'residence': 'Offenbach a.M.',
  'occupation': 'Referentin für Öffentlichkeitsarbeit für die Linksfraktion im Hessischen Landtag',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180067,
  'entity_type': 'politician',
  'label': 'Matthias Okon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180067',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-okon',
  'first_name': 'Matthias',
  'last_name': 'Okon',
  'birth_name': 'Matthias Okon ',
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Erzieher',
  'residence': 'Hasselroth',
  'occupation': 'Leitung Kindertagesstätte',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180066,
  'entity_type': 'politician',
  'label': 'Carola Gottas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180066',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carola-gottas',
  'first_name': 'Carola',
  'last_name': 'Gottas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Flörsheim a.M.',
  'occupation': 'Städtische Mitarbeiterin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180065,
  'entity_type': 'politician',
  'label': 'Konstantin Lotz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180065',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/konstantin-lotz',
  'first_name': 'Konstantin',
  'last_name': 'Lotz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Soden am Taunus',
  'occupation': 'Rechtspfleger',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180064,
  'entity_type': 'politician',
  'label': 'Brigitte Forßbohm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180064',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-forssbohm',
  'first_name': 'Brigitte',
  'last_name': 'Forßbohm',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1950,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Wiesbaden',
  'occupation': 'Verlegerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180063,
  'entity_type': 'politician',
  'label': 'Finn Koellner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180063',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/finn-koellner',
  'first_name': 'Finn',
  'last_name': 'Koellner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Idstein',
  'occupation': 'Student',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180062,
  'entity_type': 'politician',
  'label': 'Simon Jäger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180062',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simon-jaeger',
  'first_name': 'Simon',
  'last_name': 'Jäger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2005,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Eltville am Rhein',
  'occupation': 'Schüler',
  'statistic_questions': 6,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180061,
  'entity_type': 'politician',
  'label': 'Weigiang Lam',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180061',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/weigiang-lam',
  'first_name': 'Weigiang',
  'last_name': 'Lam',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Koch, Sozialwissenschaft (B.A), Kommunikations- und Medienwissenschaft (M.A)',
  'residence': 'Hanau',
  'occupation': 'Referent Medien und Kommunikation',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180060,
  'entity_type': 'politician',
  'label': 'Tobias Henrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180060',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-henrich',
  'first_name': 'Tobias',
  'last_name': 'Henrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Fach- und Wirtschaftsinformatiker',
  'residence': 'Brechen',
  'occupation': 'Gewerkschaftssekretär',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180059,
  'entity_type': 'politician',
  'label': 'Sebastian Weismann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180059',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-weismann',
  'first_name': 'Sebastian',
  'last_name': 'Weismann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180058,
  'entity_type': 'politician',
  'label': 'Desiree Becker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180058',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/desiree-becker',
  'first_name': 'Desiree',
  'last_name': 'Becker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': 'Gewerkschaftssekretärin',
  'statistic_questions': 7,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180057,
  'entity_type': 'politician',
  'label': 'Kevin Sitte',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180057',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kevin-sitte',
  'first_name': 'Kevin',
  'last_name': 'Sitte',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': 'Wetzlar',
  'occupation': 'ang. Erzieher',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180056,
  'entity_type': 'politician',
  'label': 'Andreas Gangl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180056',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-gangl',
  'first_name': 'Andreas',
  'last_name': 'Gangl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Kirchheim',
  'occupation': 'Versandmitarbeiter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180055,
  'entity_type': 'politician',
  'label': 'Anna Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180055',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-hofmann',
  'first_name': 'Anna',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': 'Marburg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180054,
  'entity_type': 'politician',
  'label': 'Antonia Marquardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180054',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antonia-marquardt',
  'first_name': 'Antonia',
  'last_name': 'Marquardt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2005,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Ludwigsau',
  'occupation': 'Abiturientin (ab Herbst Studentin)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180053,
  'entity_type': 'politician',
  'label': 'Erich Lange',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180053',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-lange',
  'first_name': 'Erich',
  'last_name': 'Lange',
  'birth_name': 'Lange',
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'KFZ-Mechaniker',
  'residence': '36199 Rotenburg Wüstefeld 6',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180052,
  'entity_type': 'politician',
  'label': 'Silvia Hable',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180052',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silvia-hable',
  'first_name': 'Silvia',
  'last_name': 'Hable',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Witzenhausen',
  'occupation': 'Bildungsreferentin/Sozialarbeiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180051,
  'entity_type': 'politician',
  'label': 'Sebastian Schackert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180051',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-schackert',
  'first_name': 'Sebastian',
  'last_name': 'Schackert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Lehrer für das Höhere Lehramt an Gymnasien',
  'residence': 'Homberg',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180050,
  'entity_type': 'politician',
  'label': 'Jürgen Bachmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180050',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-bachmann',
  'first_name': 'Jürgen',
  'last_name': 'Bachmann',
  'birth_name': 'Boos',
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Fachinformatiker - Anwendungsentwicklung',
  'residence': 'Bad Zwesten',
  'occupation': 'Wahlkreismitarbeiter',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180049,
  'entity_type': 'politician',
  'label': 'Atilla Sarikaya',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180049',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/atilla-sarikaya',
  'first_name': 'Atilla',
  'last_name': 'Sarikaya',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel Harleshausen',
  'occupation': 'Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180048,
  'entity_type': 'politician',
  'label': 'Jan Kersting',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180048',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-kersting',
  'first_name': 'Jan',
  'last_name': 'Kersting',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Liebenau',
  'occupation': 'Meister im Bäckerhandwerk',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180047,
  'entity_type': 'politician',
  'label': 'Stefanie Kersting',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180047',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-kersting',
  'first_name': 'Stefanie',
  'last_name': 'Kersting',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Liebenau',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180046,
  'entity_type': 'politician',
  'label': 'Alexandra Arndt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180046',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-arndt',
  'first_name': 'Alexandra',
  'last_name': 'Arndt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 200,
   'entity_type': 'party',
   'label': 'Klimaliste',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/200'},
  'party_past': None,
  'education': None,
  'residence': 'Reinheim ',
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180045,
  'entity_type': 'politician',
  'label': 'Felix Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180045',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-koch',
  'first_name': 'Felix',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 200,
   'entity_type': 'party',
   'label': 'Klimaliste',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/200'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Hausmann',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180044,
  'entity_type': 'politician',
  'label': 'Andre Challier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180044',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-challier',
  'first_name': 'Andre',
  'last_name': 'Challier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 200,
   'entity_type': 'party',
   'label': 'Klimaliste',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/200'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Software-Entwickler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180042,
  'entity_type': 'politician',
  'label': 'Jochen Freyberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180042',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-freyberg',
  'first_name': 'Jochen',
  'last_name': 'Freyberg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 200,
   'entity_type': 'party',
   'label': 'Klimaliste',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/200'},
  'party_past': None,
  'education': None,
  'residence': 'Kronberg im Taunus',
  'occupation': 'Programmierer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180041,
  'entity_type': 'politician',
  'label': 'Wolfgang Leiendecker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180041',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-leiendecker',
  'first_name': 'Wolfgang',
  'last_name': 'Leiendecker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 200,
   'entity_type': 'party',
   'label': 'Klimaliste',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/200'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Vilbel',
  'occupation': 'Fachinformatiker Anwendungsentwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180040,
  'entity_type': 'politician',
  'label': 'Tobias Raum',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180040',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-raum',
  'first_name': 'Tobias',
  'last_name': 'Raum',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Physiker',
  'residence': 'Bad Homburg',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180039,
  'entity_type': 'politician',
  'label': 'Werner Krone',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180039',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/werner-krone',
  'first_name': 'Werner',
  'last_name': 'Krone',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 23,
   'entity_type': 'party',
   'label': 'DKP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/23'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180038,
  'entity_type': 'politician',
  'label': 'Tim Beyermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180038',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-beyermann',
  'first_name': 'Tim',
  'last_name': 'Beyermann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 23,
   'entity_type': 'party',
   'label': 'DKP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/23'},
  'party_past': None,
  'education': None,
  'residence': 'Mörfelden-Walldorf',
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180037,
  'entity_type': 'politician',
  'label': 'Iris Schaffrina',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180037',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-schaffrina',
  'first_name': 'Iris',
  'last_name': 'Schaffrina',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 23,
   'entity_type': 'party',
   'label': 'DKP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/23'},
  'party_past': None,
  'education': None,
  'residence': 'Offenbach am Main',
  'occupation': 'Fachkraft für Schutz und Sicherheit',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180036,
  'entity_type': 'politician',
  'label': 'Detlef Olaf Schabicki',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180036',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/detlef-olaf-schabicki',
  'first_name': 'Detlef Olaf',
  'last_name': 'Schabicki',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1942,
  'party': {'id': 23,
   'entity_type': 'party',
   'label': 'DKP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/23'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180035,
  'entity_type': 'politician',
  'label': 'Maurizio Caffo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180035',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maurizio-caffo',
  'first_name': 'Maurizio',
  'last_name': 'Caffo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 23,
   'entity_type': 'party',
   'label': 'DKP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/23'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Informatiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180034,
  'entity_type': 'politician',
  'label': 'Jochen Sieck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180034',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-sieck',
  'first_name': 'Jochen',
  'last_name': 'Sieck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 179,
   'entity_type': 'party',
   'label': 'Partei der Humanisten',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/179'},
  'party_past': None,
  'education': 'Biotechnologe',
  'residence': 'Darmstadt',
  'occupation': 'Laborleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 180032,
  'entity_type': 'politician',
  'label': 'Maik Richter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180032',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maik-richter',
  'first_name': 'Maik',
  'last_name': 'Richter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180031,
  'entity_type': 'politician',
  'label': 'Ana Lena Herrling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180031',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ana-lena-herrling',
  'first_name': 'Ana Lena',
  'last_name': 'Herrling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Ingenieurin',
  'residence': 'Darmstadt ',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180030,
  'entity_type': 'politician',
  'label': 'Frederik Jobst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180030',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frederik-jobst',
  'first_name': 'Frederik',
  'last_name': 'Jobst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'B.A. Engineering Mechatronik',
  'residence': 'Darmstadt',
  'occupation': 'Student Informatik',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180028,
  'entity_type': 'politician',
  'label': 'Nico Richter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180028',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nico-richter',
  'first_name': 'Nico',
  'last_name': 'Richter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'IT-Berater',
  'residence': 'Frankfurt am Main',
  'occupation': 'IT-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180027,
  'entity_type': 'politician',
  'label': 'Kasimir Nimmerfroh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180027',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kasimir-nimmerfroh',
  'first_name': 'Kasimir',
  'last_name': 'Nimmerfroh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt',
  'occupation': 'Auszubildender',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180026,
  'entity_type': 'politician',
  'label': 'Che Chukwumerije',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180026',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/che-chukwumerije',
  'first_name': 'Che',
  'last_name': 'Chukwumerije',
  'birth_name': 'Che Chidi Chukwumerije',
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Luftverkehrsassistent',
  'residence': 'Frankfurt am Main',
  'occupation': 'Flugbegleiter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180025,
  'entity_type': 'politician',
  'label': 'Seán O’Sullivan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180025',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sean-osullivan',
  'first_name': 'Seán',
  'last_name': 'O’Sullivan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Arzt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180024,
  'entity_type': 'politician',
  'label': 'Christian Tobias Pfaff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180024',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-tobias-pfaff',
  'first_name': 'Christian Tobias',
  'last_name': 'Pfaff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Angestellter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180023,
  'entity_type': 'politician',
  'label': 'Carina König',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180023',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-koenig',
  'first_name': 'Carina',
  'last_name': 'König',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Studium Gesundheitsmanagement (B.A./M.A.) und Psychologie (B.A.)',
  'residence': 'Wiesbaden',
  'occupation': 'Gesundheitsmanagerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180022,
  'entity_type': 'politician',
  'label': 'Tassilo von Jagow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180022',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tassilo-von-jagow',
  'first_name': 'Tassilo',
  'last_name': 'von Jagow',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2003,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': None,
  'residence': 'Wiesbaden',
  'occupation': 'Freiwilligendienst',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180021,
  'entity_type': 'politician',
  'label': 'Christoph Stürmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180021',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-stuermer',
  'first_name': 'Christoph',
  'last_name': 'Stürmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Diplom-Volkswirt, Bankkaufmann',
  'residence': 'Königstein im Taunus',
  'occupation': 'Unternehmensberater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180020,
  'entity_type': 'politician',
  'label': 'Niklas Debusmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180020',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-debusmann',
  'first_name': 'Niklas',
  'last_name': 'Debusmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Kaufmann im Einzelhandel',
  'residence': 'Limburg an der Lahn',
  'occupation': 'Sparkassenangestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180018,
  'entity_type': 'politician',
  'label': 'Jürgen Sampel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180018',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-sampel',
  'first_name': 'Jürgen',
  'last_name': 'Sampel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 6,
   'entity_type': 'party',
   'label': 'PIRATEN',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/6'},
  'party_past': None,
  'education': 'Maler & Lackierer',
  'residence': 'Darmstadt',
  'occupation': 'IHK geprüfte Werkschutzfachkraft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180017,
  'entity_type': 'politician',
  'label': 'Svetlana Jovanov',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180017',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/svetlana-jovanov',
  'first_name': 'Svetlana',
  'last_name': 'Jovanov',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 6,
   'entity_type': 'party',
   'label': 'PIRATEN',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/6'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180016,
  'entity_type': 'politician',
  'label': 'Katarina Brennecke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180016',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katarina-brennecke',
  'first_name': 'Katarina',
  'last_name': 'Brennecke',
  'birth_name': 'Bednarikova',
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 6,
   'entity_type': 'party',
   'label': 'PIRATEN',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/6'},
  'party_past': None,
  'education': 'Büro- u. HandelsKffr. mit Abi (SES); Imm.Ök. & Dipl. Betrw. (VWA); B.A. (FOM)',
  'residence': 'Bad Homburg',
  'occupation': 'Freiberuflerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180015,
  'entity_type': 'politician',
  'label': 'Michael Wilkens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180015',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-wilkens',
  'first_name': 'Michael',
  'last_name': 'Wilkens',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': None,
  'residence': '64646 Heppenheim',
  'occupation': 'Ltd. Angestellter',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180014,
  'entity_type': 'politician',
  'label': 'Silke Schieß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180014',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-schiess',
  'first_name': 'Silke',
  'last_name': 'Schieß',
  'birth_name': 'Schieß ',
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Diplom-Wirtschaftskorrespondentin',
  'residence': 'Messel',
  'occupation': 'Technische Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180013,
  'entity_type': 'politician',
  'label': 'Paula López Vicente',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180013',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/paula-lopez-vicente',
  'first_name': 'Paula',
  'last_name': 'López Vicente',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'BWL-Studentin',
  'residence': 'Rodgau',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180011,
  'entity_type': 'politician',
  'label': 'Roland Hardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180011',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-hardt',
  'first_name': 'Roland',
  'last_name': 'Hardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Diplom-Ingenieur, GIS- und Geodaten-Spezialist',
  'residence': 'Area 51 (Hessen)',
  'occupation': 'Anwendungsberater, Polit-Schauspieler, Sonderbevollmächtigter für Mexiko, Havariekommissar, Universal-Experte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180010,
  'entity_type': 'politician',
  'label': 'Sidney Wilz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180010',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sidney-wilz',
  'first_name': 'Sidney',
  'last_name': 'Wilz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180009,
  'entity_type': 'politician',
  'label': 'Stefan Weiß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180009',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-weiss',
  'first_name': 'Stefan',
  'last_name': 'Weiß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Mechatroniker ',
  'residence': 'Groß-Gerau',
  'occupation': 'Schienenfahrzeug Instandhalter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180006,
  'entity_type': 'politician',
  'label': 'Michael Götz-Pijl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180006',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-goetz-pijl',
  'first_name': 'Michael',
  'last_name': 'Götz-Pijl',
  'birth_name': 'Götz',
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Dipl. Betriebsökonom',
  'residence': 'Frankfurt am Main',
  'occupation': 'Selbstständiger Berater für Zoll- und Außenwirtschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180005,
  'entity_type': 'politician',
  'label': 'Eli Trumheller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180005',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eli-trumheller',
  'first_name': 'Eli',
  'last_name': 'Trumheller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Clownschauspieler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180004,
  'entity_type': 'politician',
  'label': 'Claudia Dettenrieder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180004',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-dettenrieder',
  'first_name': 'Claudia',
  'last_name': 'Dettenrieder',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180002,
  'entity_type': 'politician',
  'label': 'Jochen Van Steen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180002',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-van-steen',
  'first_name': 'Jochen',
  'last_name': 'Van Steen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Nauheim',
  'occupation': 'Erzieher',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180001,
  'entity_type': 'politician',
  'label': 'Alexander Diller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180001',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-diller',
  'first_name': 'Alexander',
  'last_name': 'Diller',
  'birth_name': 'Diller ',
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Fachkraft für Arbeits und Berufsförderung an Werkstätten für behinderte Menschen in Hessen ',
  'residence': 'Altenstadt ',
  'occupation': 'Fachkraft für Arbeits und Berufsförderung an Werkstätten für behinderte Menschen in Hessen ',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180000,
  'entity_type': 'politician',
  'label': 'Sascha Baade',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180000',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-baade',
  'first_name': 'Sascha',
  'last_name': 'Baade',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Wöllstadt',
  'occupation': 'Selbstständig',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179999,
  'entity_type': 'politician',
  'label': 'Shayan Tafakori Delbari',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179999',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/shayan-tafakori-delbari',
  'first_name': 'Shayan',
  'last_name': 'Tafakori Delbari',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Industriekaufmann, angehender staatlich geprüfter Betriebswirt',
  'residence': 'Schotten',
  'occupation': 'Kaufmännischer Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179998,
  'entity_type': 'politician',
  'label': 'Oliver Förster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179998',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-foerster',
  'first_name': 'Oliver',
  'last_name': 'Förster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Wetzlar',
  'occupation': 'Büroangestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179997,
  'entity_type': 'politician',
  'label': 'Ullrich Jell',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179997',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ullrich-jell',
  'first_name': 'Ullrich',
  'last_name': 'Jell',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Fulda',
  'occupation': 'Sozialarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179996,
  'entity_type': 'politician',
  'label': 'Ute Riebold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179996',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ute-riebold',
  'first_name': 'Ute',
  'last_name': 'Riebold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': 'Dipl.-Sozialarbeiterin',
  'residence': 'Fulda',
  'occupation': 'Angestellte',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179995,
  'entity_type': 'politician',
  'label': 'Sebastian Hörner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179995',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-hoerner',
  'first_name': 'Sebastian',
  'last_name': 'Hörner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Marburg',
  'occupation': 'Krankenpflegehelfer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179993,
  'entity_type': 'politician',
  'label': 'Julian Prescher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179993',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-prescher',
  'first_name': 'Julian',
  'last_name': 'Prescher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': 'Witzenhausen',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179992,
  'entity_type': 'politician',
  'label': 'André Kruschke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179992',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-kruschke',
  'first_name': 'André',
  'last_name': 'Kruschke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Kelkheim',
  'occupation': 'Syndikusrechtsanwalt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179991,
  'entity_type': 'politician',
  'label': 'Manfred Berner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179991',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-berner',
  'first_name': 'Manfred',
  'last_name': 'Berner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': 'Kelkheim',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179990,
  'entity_type': 'politician',
  'label': 'Michael Mach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179990',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-mach',
  'first_name': 'Michael',
  'last_name': 'Mach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Kommunikationselektroniker, Dipl. Sozialpädagoge (beides abgeschlossen;)',
  'residence': 'Altenstadt',
  'occupation': 'Qualitätsmanagementbeauftragter, Leiter Digitale Geschäftsprozesse',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179989,
  'entity_type': 'politician',
  'label': 'Jutta Köhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179989',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jutta-koehler',
  'first_name': 'Jutta',
  'last_name': 'Köhler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Oberursel (Taunus)',
  'occupation': 'Physiotherapeutin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179988,
  'entity_type': 'politician',
  'label': 'Thomas Freyhardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179988',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-freyhardt',
  'first_name': 'Thomas',
  'last_name': 'Freyhardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Dipl.-Kaufmann',
  'residence': 'Bad Homburg v. d. Höhe',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179987,
  'entity_type': 'politician',
  'label': 'Martin Kauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179987',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-kauer',
  'first_name': 'Martin',
  'last_name': 'Kauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Staatsexamen',
  'residence': 'Buseck',
  'occupation': 'Zahnarzt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179986,
  'entity_type': 'politician',
  'label': 'Heinrich Schröder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179986',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-schroeder',
  'first_name': 'Heinrich',
  'last_name': 'Schröder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Lichtenfels',
  'occupation': 'Landwirt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179985,
  'entity_type': 'politician',
  'label': 'Thomas Köhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179985',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-koehler-1',
  'first_name': 'Thomas',
  'last_name': 'Köhler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Dipl.-Betriebswirt ',
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179984,
  'entity_type': 'politician',
  'label': 'Susanne Hennemuth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179984',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-hennemuth',
  'first_name': 'Susanne',
  'last_name': 'Hennemuth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179983,
  'entity_type': 'politician',
  'label': 'Lars Rinsche',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179983',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-rinsche',
  'first_name': 'Lars',
  'last_name': 'Rinsche',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Niestetal',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179982,
  'entity_type': 'politician',
  'label': 'Chalid Ashry',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179982',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/chalid-ashry',
  'first_name': 'Chalid',
  'last_name': 'Ashry',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Reinhardshagen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179981,
  'entity_type': 'politician',
  'label': 'Alfred Münch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179981',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfred-muench',
  'first_name': 'Alfred',
  'last_name': 'Münch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179980,
  'entity_type': 'politician',
  'label': 'Gina Tomada',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179980',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gina-tomada',
  'first_name': 'Gina',
  'last_name': 'Tomada',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Höchst im Odenwald',
  'occupation': 'zahnmedizinische Fachangestellte',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179979,
  'entity_type': 'politician',
  'label': 'Lena Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179979',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-weber',
  'first_name': 'Lena',
  'last_name': 'Weber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Groß-Umstadt',
  'occupation': 'Medizinische Fachangestellte',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179978,
  'entity_type': 'politician',
  'label': 'Frank Jaschinski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179978',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-jaschinski',
  'first_name': 'Frank',
  'last_name': 'Jaschinski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Friedberg',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179977,
  'entity_type': 'politician',
  'label': 'Jörg Harbrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179977',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-harbrecht',
  'first_name': 'Jörg',
  'last_name': 'Harbrecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179976,
  'entity_type': 'politician',
  'label': 'Andreas Trebing',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179976',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-trebing',
  'first_name': 'Andreas',
  'last_name': 'Trebing',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Dipl.-Ing. Nachrichtentechnik',
  'residence': 'Darmstadt',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179975,
  'entity_type': 'politician',
  'label': 'Cosima Kinkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179975',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cosima-kinkel',
  'first_name': 'Cosima',
  'last_name': 'Kinkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Groß-Gerau',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179974,
  'entity_type': 'politician',
  'label': 'Ayhan Isikli',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179974',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ayhan-isikli',
  'first_name': 'Ayhan',
  'last_name': 'Isikli',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Dipl. Betriebswirt',
  'residence': 'Kelsterbach',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179973,
  'entity_type': 'politician',
  'label': 'Hagen Oftring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179973',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hagen-oftring',
  'first_name': 'Hagen',
  'last_name': 'Oftring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Pilot',
  'residence': 'Seligenstadt ',
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179972,
  'entity_type': 'politician',
  'label': 'Sergio Soares',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179972',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sergio-soares',
  'first_name': 'Sergio',
  'last_name': 'Soares',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Neu-Isenburg',
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179971,
  'entity_type': 'politician',
  'label': 'Bünyamin Colak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179971',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/buenyamin-colak',
  'first_name': 'Bünyamin',
  'last_name': 'Colak',
  'birth_name': 'Colak',
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Logistiker BWL',
  'residence': 'Gelnhausen',
  'occupation': 'IT-Projektmanager',
  'statistic_questions': 8,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179970,
  'entity_type': 'politician',
  'label': 'Lahcen Ariah',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179970',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lahcen-ariah',
  'first_name': 'Lahcen',
  'last_name': 'Ariah',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Erlensee',
  'occupation': 'Jurist',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179969,
  'entity_type': 'politician',
  'label': 'Werner Rudloff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179969',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/werner-rudloff',
  'first_name': 'Werner',
  'last_name': 'Rudloff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179968,
  'entity_type': 'politician',
  'label': 'Theo Hahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179968',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/theo-hahn',
  'first_name': 'Theo',
  'last_name': 'Hahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Rentner',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179967,
  'entity_type': 'politician',
  'label': 'Barbara Lange',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179967',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-lange',
  'first_name': 'Barbara',
  'last_name': 'Lange',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Frankfurt am Main',
  'occupation': 'Unternehmensjuristin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179966,
  'entity_type': 'politician',
  'label': 'Dorian Dörge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179966',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dorian-doerge',
  'first_name': 'Dorian',
  'last_name': 'Dörge',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Doktor der Biologie',
  'residence': 'Frankfurt am Main',
  'occupation': 'Biologe',
  'statistic_questions': 19,
  'statistic_questions_answered': 19,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179965,
  'entity_type': 'politician',
  'label': 'Doris Kuhn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179965',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/doris-kuhn',
  'first_name': 'Doris',
  'last_name': 'Kuhn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Finanzbuchhalterin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179964,
  'entity_type': 'politician',
  'label': 'Marcel Geis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179964',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcel-geis',
  'first_name': 'Marcel',
  'last_name': 'Geis',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Kelkheim (Taunus)',
  'occupation': 'IT-Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179963,
  'entity_type': 'politician',
  'label': 'Daniel Dück',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179963',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-dueck',
  'first_name': 'Daniel',
  'last_name': 'Dück',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Neu-Isenburg',
  'occupation': 'Polizeivollzugsbeamter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179962,
  'entity_type': 'politician',
  'label': 'Dragan Kosanovic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179962',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dragan-kosanovic',
  'first_name': 'Dragan',
  'last_name': 'Kosanovic',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Limburg a.d. Lahn',
  'occupation': 'selbständiger Fachinformatiker',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179961,
  'entity_type': 'politician',
  'label': 'Erich Spamer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179961',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-spamer',
  'first_name': 'Erich',
  'last_name': 'Spamer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Büdingen',
  'occupation': 'Bürgermeister a. D.',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179960,
  'entity_type': 'politician',
  'label': 'Andreas Bernhardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179960',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-bernhardt',
  'first_name': 'Andreas',
  'last_name': 'Bernhardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Oberursel',
  'occupation': 'selbstständig',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179959,
  'entity_type': 'politician',
  'label': 'Christin Jost',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179959',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christin-jost',
  'first_name': 'Christin',
  'last_name': 'Jost',
  'birth_name': 'Berndt',
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Medienfachwirtin / Mütterpflegerin',
  'residence': 'Weilrod/Friedrichsdorf',
  'occupation': 'Projektassistentin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179958,
  'entity_type': 'politician',
  'label': 'Diana Yüce',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179958',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/diana-yuece',
  'first_name': 'Diana',
  'last_name': 'Yüce',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Limburg a. d. Lahn',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179957,
  'entity_type': 'politician',
  'label': 'Dieter Welker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179957',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dieter-welker',
  'first_name': 'Dieter',
  'last_name': 'Welker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Alsfeld',
  'occupation': 'Kriminalbeamter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179956,
  'entity_type': 'politician',
  'label': 'Hartmut Schau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179956',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hartmut-schau',
  'first_name': 'Hartmut',
  'last_name': 'Schau',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Diplom-Geologe',
  'residence': 'Linden',
  'occupation': 'IT-Trainer und Berater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179955,
  'entity_type': 'politician',
  'label': 'Felix Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179955',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-mueller',
  'first_name': 'Felix',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179954,
  'entity_type': 'politician',
  'label': 'Murad Altun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179954',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/murad-altun',
  'first_name': 'Murad',
  'last_name': 'Altun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179953,
  'entity_type': 'politician',
  'label': 'Peter Schramm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179953',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-schramm',
  'first_name': 'Peter',
  'last_name': 'Schramm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Poppenhausen (Wasserkuppe)',
  'occupation': 'Rentner',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179952,
  'entity_type': 'politician',
  'label': 'Jürgen Günther',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179952',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-guenther',
  'first_name': 'Jürgen',
  'last_name': 'Günther',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Ebersburg',
  'occupation': 'Ingenieur',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179951,
  'entity_type': 'politician',
  'label': 'Leon Löffler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179951',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leon-loeffler',
  'first_name': 'Leon',
  'last_name': 'Löffler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Auszubildender als Verwaltungsfachangestellter',
  'residence': 'Dautphetal ',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179950,
  'entity_type': 'politician',
  'label': 'Pascal Möller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179950',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pascal-moeller',
  'first_name': 'Pascal',
  'last_name': 'Möller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Staatl. gepr. Betriebswirt',
  'residence': 'Eiterfeld',
  'occupation': 'Projektleiter',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179949,
  'entity_type': 'politician',
  'label': 'Lorenz Faßhauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179949',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lorenz-fasshauer',
  'first_name': 'Lorenz',
  'last_name': 'Faßhauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Sooden-Allendorf',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179948,
  'entity_type': 'politician',
  'label': 'Martin Graefe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179948',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-graefe',
  'first_name': 'Martin',
  'last_name': 'Graefe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Guxhagen',
  'occupation': 'HR Manager',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179947,
  'entity_type': 'politician',
  'label': 'Roman Kallasch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179947',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-kallasch',
  'first_name': 'Roman',
  'last_name': 'Kallasch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Schwalmstadt',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179946,
  'entity_type': 'politician',
  'label': 'Peter Beckmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179946',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-beckmann',
  'first_name': 'Peter',
  'last_name': 'Beckmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Schwalmstadt',
  'occupation': 'Angestellter',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179945,
  'entity_type': 'politician',
  'label': 'Bastian Gleuel-Löcken',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179945',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bastian-gleuel-loecken',
  'first_name': 'Bastian',
  'last_name': 'Gleuel-Löcken',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Kassel',
  'occupation': 'Pädagoge',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179944,
  'entity_type': 'politician',
  'label': 'Stephan Wassmuth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179944',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-wassmuth',
  'first_name': 'Stephan',
  'last_name': 'Wassmuth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Diplom Verwaltungswirt',
  'residence': 'Lohfelden',
  'occupation': 'Abteilungsleiter Ordnungsamt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179943,
  'entity_type': 'politician',
  'label': 'Tobias Seydler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179943',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-seydler',
  'first_name': 'Tobias',
  'last_name': 'Seydler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': 'Trendelburg',
  'occupation': 'Vermögensberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179942,
  'entity_type': 'politician',
  'label': 'Karsten Bletzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179942',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karsten-bletzer',
  'first_name': 'Karsten',
  'last_name': 'Bletzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Gorxheimertal',
  'occupation': 'Feingeräteelektroniker',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179941,
  'entity_type': 'politician',
  'label': 'Anja Swars',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179941',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-swars',
  'first_name': 'Anja',
  'last_name': 'Swars',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Krankenschwester',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179940,
  'entity_type': 'politician',
  'label': 'Ingeborg Horn-Posmyk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179940',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-horn-posmyk',
  'first_name': 'Ingeborg',
  'last_name': 'Horn-Posmyk',
  'birth_name': 'Weber',
  'sex': 'f',
  'year_of_birth': 1957,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'kaufm. Angestellte',
  'residence': 'Biebesheim',
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179939,
  'entity_type': 'politician',
  'label': 'Zakia Rappenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179939',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/zakia-rappenberg',
  'first_name': 'Zakia',
  'last_name': 'Rappenberg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Ginsheim-Gustavsburg',
  'occupation': 'Office-Managerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179938,
  'entity_type': 'politician',
  'label': 'Jochen Roos',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179938',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-roos',
  'first_name': 'Jochen',
  'last_name': 'Roos',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Rödermark',
  'occupation': 'Persönlicher Referent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179937,
  'entity_type': 'politician',
  'label': 'Karl Kiesler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179937',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-kiesler',
  'first_name': 'Karl',
  'last_name': 'Kiesler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Automobilkaufmann ',
  'residence': 'Hainburg',
  'occupation': 'Immobilienmakler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179936,
  'entity_type': 'politician',
  'label': 'Maximilian Müger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179936',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-mueger',
  'first_name': 'Maximilian',
  'last_name': 'Müger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Neu-Isenburg',
  'occupation': 'Referent Soziales',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179935,
  'entity_type': 'politician',
  'label': 'Jürgen Mohn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179935',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-mohn',
  'first_name': 'Jürgen',
  'last_name': 'Mohn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirt',
  'residence': 'Gelnhausen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179934,
  'entity_type': 'politician',
  'label': 'Peter Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179934',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-schneider-2',
  'first_name': 'Peter',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Erlensee',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179933,
  'entity_type': 'politician',
  'label': 'John Frank Csapo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179933',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/john-frank-csapo',
  'first_name': 'John Frank',
  'last_name': 'Csapo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179932,
  'entity_type': 'politician',
  'label': 'Willy Klinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179932',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/willy-klinger',
  'first_name': 'Willy',
  'last_name': 'Klinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Kundenservicemitarbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179931,
  'entity_type': 'politician',
  'label': 'Anna Nguyen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179931',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-nguyen',
  'first_name': 'Anna',
  'last_name': 'Nguyen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Angestellte Unternehmensberaterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179930,
  'entity_type': 'politician',
  'label': 'Johannes Marxen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179930',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-marxen',
  'first_name': 'Johannes',
  'last_name': 'Marxen',
  'birth_name': 'Marxen',
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Meister',
  'residence': 'Schotten',
  'occupation': 'Landwirt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179929,
  'entity_type': 'politician',
  'label': 'Christian Rohde',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179929',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-rohde',
  'first_name': 'Christian',
  'last_name': 'Rohde',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Karben',
  'occupation': 'wissenschaftlicher Mitarbeiter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179928,
  'entity_type': 'politician',
  'label': 'Peter Lutz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179928',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-lutz-0',
  'first_name': 'Peter',
  'last_name': 'Lutz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Kfm. d. Grundstücks- u. Wohnungswirtschaft, Dipl. Kfm.',
  'residence': 'Oberursel',
  'occupation': 'Berater und Projektentwickler im Wohnungsbau',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179927,
  'entity_type': 'politician',
  'label': 'Clemens Hauk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179927',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/clemens-hauk',
  'first_name': 'Clemens',
  'last_name': 'Hauk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Usingen',
  'occupation': 'Zahnarzt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179926,
  'entity_type': 'politician',
  'label': 'Gerhard Bärsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179926',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-baersch',
  'first_name': 'Gerhard',
  'last_name': 'Bärsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Ulrichstein',
  'occupation': 'Unternehmensberater',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179925,
  'entity_type': 'politician',
  'label': 'Sandra Weegels',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179925',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-weegels',
  'first_name': 'Sandra',
  'last_name': 'Weegels',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Polizeibeamtin',
  'residence': 'Gießen',
  'occupation': 'Schutzpolizistin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179924,
  'entity_type': 'politician',
  'label': 'Lothar Mulch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179924',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lothar-mulch',
  'first_name': 'Lothar',
  'last_name': 'Mulch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Versicherungsfachmann',
  'residence': 'Wetzlar',
  'occupation': 'Büroleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179923,
  'entity_type': 'politician',
  'label': 'Nicole Hess',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179923',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-hess',
  'first_name': 'Nicole',
  'last_name': 'Hess',
  'birth_name': 'Schröder',
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Industriekauffrau, Sprecherin, Moderatorin ',
  'residence': 'Gießen',
  'occupation': 'Flugbegleiterin ',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179922,
  'entity_type': 'politician',
  'label': 'Christian Douglas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179922',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-douglas',
  'first_name': 'Christian',
  'last_name': 'Douglas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179921,
  'entity_type': 'politician',
  'label': 'Pascal Schleich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179921',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pascal-schleich',
  'first_name': 'Pascal',
  'last_name': 'Schleich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Metallbaumeister IWS',
  'residence': 'Homberg (Ohm) ',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179920,
  'entity_type': 'politician',
  'label': 'Sonja Merkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179920',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-merkel',
  'first_name': 'Sonja',
  'last_name': 'Merkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Steffenberg',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179919,
  'entity_type': 'politician',
  'label': 'Kurt Gloos',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179919',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kurt-gloos',
  'first_name': 'Kurt',
  'last_name': 'Gloos',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': 'Diplom-Physiker',
  'residence': 'Schenklengsfeld',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179918,
  'entity_type': 'politician',
  'label': 'Yvonne Venticinque-Effenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179918',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-venticinque-effenberger',
  'first_name': 'Yvonne',
  'last_name': 'Venticinque-Effenberger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': 'Edertal',
  'occupation': 'Selbstständig',
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179917,
  'entity_type': 'politician',
  'label': 'Thomas Schenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179917',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-schenk',
  'first_name': 'Thomas',
  'last_name': 'Schenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 9,
   'entity_type': 'party',
   'label': 'AfD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/9'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179916,
  'entity_type': 'politician',
  'label': 'Robin Mai',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179916',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robin-mai',
  'first_name': 'Robin',
  'last_name': 'Mai',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Fachinformatiker',
  'residence': 'Büdingen',
  'occupation': 'IT-Unternehmer',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179915,
  'entity_type': 'politician',
  'label': 'Dominik Erb',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179915',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-erb',
  'first_name': 'Dominik',
  'last_name': 'Erb',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Volljurist (Assessor)',
  'residence': 'Gießen',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179914,
  'entity_type': 'politician',
  'label': 'Friederike Becker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179914',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/friederike-becker',
  'first_name': 'Friederike',
  'last_name': 'Becker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Staatsexamen',
  'residence': 'Twistetal',
  'occupation': 'Lehrerin',
  'statistic_questions': 4,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179913,
  'entity_type': 'politician',
  'label': 'Jana Bukacz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179913',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jana-bukacz',
  'first_name': 'Jana',
  'last_name': 'Bukacz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Immenhausen',
  'occupation': 'Projektmanagerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179912,
  'entity_type': 'politician',
  'label': 'Maurice Zettl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179912',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maurice-zettl',
  'first_name': 'Maurice',
  'last_name': 'Zettl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': 'Hirschhorn',
  'occupation': 'QA & Testing Lead Engineer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179911,
  'entity_type': 'politician',
  'label': 'Ole Wilkening',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179911',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ole-wilkening',
  'first_name': 'Ole',
  'last_name': 'Wilkening',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Bachelor Business Administration',
  'residence': 'Heppenheim',
  'occupation': 'Student',
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179910,
  'entity_type': 'politician',
  'label': 'Sandra Ciupka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179910',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-ciupka',
  'first_name': 'Sandra',
  'last_name': 'Ciupka',
  'birth_name': 'Novak',
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Groß-Zimmern',
  'occupation': 'Redakteurin Unternehmenskommunikation',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179909,
  'entity_type': 'politician',
  'label': 'Kirsten Willenbücher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179909',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kirsten-willenbuecher',
  'first_name': 'Kirsten',
  'last_name': 'Willenbücher',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Freiberuflerin',
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179908,
  'entity_type': 'politician',
  'label': 'Marie Guerdan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179908',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marie-guerdan',
  'first_name': 'Marie',
  'last_name': 'Guerdan',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Projektmanagerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179907,
  'entity_type': 'politician',
  'label': 'Patrick Schütz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179907',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-schuetz',
  'first_name': 'Patrick',
  'last_name': 'Schütz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179906,
  'entity_type': 'politician',
  'label': 'Johanna von Trotha',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179906',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-von-trotha',
  'first_name': 'Johanna',
  'last_name': 'von Trotha',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Geschäftsführerin',
  'residence': 'Ginsheim-Gustavsburg',
  'occupation': 'Selbstständig',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179905,
  'entity_type': 'politician',
  'label': 'Kirill Steinert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179905',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kirill-steinert',
  'first_name': 'Kirill',
  'last_name': 'Steinert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Volkswirt',
  'residence': 'Dietzenbach',
  'occupation': 'IT-Projektleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179904,
  'entity_type': 'politician',
  'label': 'Susann Guber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179904',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susann-guber',
  'first_name': 'Susann',
  'last_name': 'Guber',
  'birth_name': 'Guber',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Diplom-Betriebswirt (BA)',
  'residence': None,
  'occupation': 'Referentin Infrastrukturfinanzierung',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179903,
  'entity_type': 'politician',
  'label': 'Michael Otten',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179903',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-otten',
  'first_name': 'Michael',
  'last_name': 'Otten',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Diplom Betriebswirt (FH)',
  'residence': 'Bad Orb',
  'occupation': 'Betriebswirt im Verhandlungsmanagement',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179902,
  'entity_type': 'politician',
  'label': 'Eva Bieber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179902',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-bieber',
  'first_name': 'Eva',
  'last_name': 'Bieber',
  'birth_name': 'Görtz',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179901,
  'entity_type': 'politician',
  'label': 'Yves Roth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179901',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yves-roth',
  'first_name': 'Yves',
  'last_name': 'Roth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Schüler',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179900,
  'entity_type': 'politician',
  'label': 'Isabel Schnitzler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179900',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-schnitzler',
  'first_name': 'Isabel',
  'last_name': 'Schnitzler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179899,
  'entity_type': 'politician',
  'label': 'Silke Wedekind',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179899',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-wedekind',
  'first_name': 'Silke',
  'last_name': 'Wedekind',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Freie Medizinjournalistin',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179898,
  'entity_type': 'politician',
  'label': 'Michaela Schwarz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179898',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michaela-schwarz',
  'first_name': 'Michaela',
  'last_name': 'Schwarz',
  'birth_name': 'Schwarz',
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Diplom-Mathematikerin',
  'residence': 'Hofheim am Taunus',
  'occupation': 'Diplom-Mathematikerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179897,
  'entity_type': 'politician',
  'label': 'Elias Kian Shieh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179897',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elias-kian-shieh',
  'first_name': 'Elias Kian',
  'last_name': 'Shieh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Kelkheim',
  'occupation': 'Student der Rechtswissenschaften',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179896,
  'entity_type': 'politician',
  'label': 'Juliane Bremerich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179896',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juliane-bremerich',
  'first_name': 'Juliane',
  'last_name': 'Bremerich',
  'birth_name': 'Brack',
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Dipl.-Kffr.',
  'residence': 'Taunusstein',
  'occupation': 'Projektmanagerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179895,
  'entity_type': 'politician',
  'label': 'Marius Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179895',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marius-schaefer',
  'first_name': 'Marius',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'B.Sc der Wirtschaftswissenschaften',
  'residence': 'Oestrich-Winkel',
  'occupation': 'Referent für Energie- und Klimapolitik',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179894,
  'entity_type': 'politician',
  'label': 'Jochen Ruths',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179894',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-ruths',
  'first_name': 'Jochen',
  'last_name': 'Ruths',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Nauheim',
  'occupation': 'Kaufmann',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179893,
  'entity_type': 'politician',
  'label': 'Philipp Herbold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179893',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-herbold',
  'first_name': 'Philipp',
  'last_name': 'Herbold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bad Homburg v. d. Höhe',
  'occupation': 'Fachbereichsleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179892,
  'entity_type': 'politician',
  'label': 'Yannik Hafeneger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179892',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yannik-hafeneger',
  'first_name': 'Yannik',
  'last_name': 'Hafeneger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2002,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Gießen',
  'occupation': 'Student',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179891,
  'entity_type': 'politician',
  'label': 'Tobias Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179891',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-mueller',
  'first_name': 'Tobias',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Dipl.-Jurist / Mag. rer. publ.',
  'residence': 'Fulda',
  'occupation': 'Verwaltungsjurist / OVR',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179890,
  'entity_type': 'politician',
  'label': 'Louisa Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179890',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/louisa-scholz',
  'first_name': 'Louisa',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2003,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Marburg',
  'occupation': 'Studentin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179889,
  'entity_type': 'politician',
  'label': 'Marcel Jost',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179889',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcel-jost',
  'first_name': 'Marcel',
  'last_name': 'Jost',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Fuldabrück',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179888,
  'entity_type': 'politician',
  'label': 'Fabian Mirold-Stroh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179888',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-mirold-stroh',
  'first_name': 'Fabian',
  'last_name': 'Mirold-Stroh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Student: Berufsschullehramt, Politik, Maschinenbau',
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179887,
  'entity_type': 'politician',
  'label': 'Eric Tjarks',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179887',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eric-tjarks',
  'first_name': 'Eric',
  'last_name': 'Tjarks',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'promovierter Volljurist',
  'residence': '64625 Bensheim',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179886,
  'entity_type': 'politician',
  'label': 'Mirja Mietzker-Becker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179886',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mirja-mietzker-becker',
  'first_name': 'Mirja',
  'last_name': 'Mietzker-Becker',
  'birth_name': 'Helmes',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Arzthelferin, Medienberatung, Selbstständigkeit, Mutter',
  'residence': 'Lampertheim',
  'occupation': 'Kunsthandwerkerin (Kerzendesign)',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179885,
  'entity_type': 'politician',
  'label': 'Annette Huber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179885',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annette-huber',
  'first_name': 'Annette',
  'last_name': 'Huber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Krankenschwester, Auditorin',
  'residence': 'Groß-Umstadt',
  'occupation': 'Qualitätsprüferin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179884,
  'entity_type': 'politician',
  'label': 'Andreas Ewald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179884',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-ewald',
  'first_name': 'Andreas',
  'last_name': 'Ewald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Ingenieur (B.Sc.)',
  'residence': 'Darmstadt',
  'occupation': 'Politischer Referent',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179883,
  'entity_type': 'politician',
  'label': 'Mahfooz Malik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179883',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mahfooz-malik',
  'first_name': 'Mahfooz',
  'last_name': 'Malik',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'M.Sc. in Management; M.Sc. in Business Analytics',
  'residence': 'Rödermark',
  'occupation': 'Technologieberater',
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179882,
  'entity_type': 'politician',
  'label': 'Lasse Westphal',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179882',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lasse-westphal',
  'first_name': 'Lasse',
  'last_name': 'Westphal',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Mühlheim am Main',
  'occupation': 'Sozialarbeiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179881,
  'entity_type': 'politician',
  'label': 'Robert Erkan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179881',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-erkan',
  'first_name': 'Robert',
  'last_name': 'Erkan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Bankkaufmann und zertifizierter Mediator',
  'residence': 'Hanau',
  'occupation': 'Freiberuflicher Mediator und systemischer Berater',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179880,
  'entity_type': 'politician',
  'label': 'Nilab Alokuzay-Kiesinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179880',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nilab-alokuzay-kiesinger',
  'first_name': 'Nilab',
  'last_name': 'Alokuzay-Kiesinger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Geschäftsstellenleiterin',
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179879,
  'entity_type': 'politician',
  'label': 'Julia Eberz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179879',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-eberz',
  'first_name': 'Julia',
  'last_name': 'Eberz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Diplom-Geografin',
  'residence': 'Frankfurt',
  'occupation': 'Büroleiterin ',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179878,
  'entity_type': 'politician',
  'label': 'Bianca Strauß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179878',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bianca-strauss',
  'first_name': 'Bianca',
  'last_name': 'Strauß',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Journalistin',
  'residence': 'Hofheim am Taunus',
  'occupation': 'selbständig',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179877,
  'entity_type': 'politician',
  'label': 'Lara Klaes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179877',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lara-klaes',
  'first_name': 'Lara',
  'last_name': 'Klaes',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Sozialpädagogin (B.A.) & Staatlich anerkannte Sozialarbeiterin',
  'residence': 'Wiesbaden',
  'occupation': 'Sozialarbeiterin ',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179876,
  'entity_type': 'politician',
  'label': 'Dominik Lawetzky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179876',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-lawetzky',
  'first_name': 'Dominik',
  'last_name': 'Lawetzky',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Angehender Psychologe',
  'residence': 'Eltville am Rhein',
  'occupation': 'HR Data Analytics bei PwC Strategy&',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179875,
  'entity_type': 'politician',
  'label': 'Sabina Eberlein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179875',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabina-eberlein',
  'first_name': 'Sabina',
  'last_name': 'Eberlein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Dipl. Informatikerin, Dipl. Exportwirtin',
  'residence': 'Bad Vilbel',
  'occupation': 'IT Projektleiterin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179874,
  'entity_type': 'politician',
  'label': 'Sven Mathes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179874',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-mathes',
  'first_name': 'Sven',
  'last_name': 'Mathes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Verwaltungsfachangestellter',
  'residence': 'Oberursel',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179873,
  'entity_type': 'politician',
  'label': 'Anke Föh-Harshman',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179873',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anke-foeh-harshman',
  'first_name': 'Anke',
  'last_name': 'Föh-Harshman',
  'birth_name': 'Föh',
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Studium Soziologie',
  'residence': 'Hadamar',
  'occupation': 'selbständige Heilpraktikerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179872,
  'entity_type': 'politician',
  'label': 'Emely Green',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179872',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/emely-green',
  'first_name': 'Emely',
  'last_name': 'Green',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1998,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Hüttenberg',
  'occupation': 'Angestellte',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179871,
  'entity_type': 'politician',
  'label': 'Reiner Dworschak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179871',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reiner-dworschak-0',
  'first_name': 'Reiner',
  'last_name': 'Dworschak',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': None,
  'residence': 'Herborn',
  'occupation': 'Pensionär',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179870,
  'entity_type': 'politician',
  'label': 'Marion Messik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179870',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marion-messik',
  'first_name': 'Marion',
  'last_name': 'Messik',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Kinderkrankenschwester, B.Sc. Oecotrophologie, M.Sc. Haushalts- und Dienstleistungswissenschaften (Versorgungsmanagement) ',
  'residence': 'Marburg',
  'occupation': 'Angestellte im öffentlichen Gesundheitsdienst ',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179869,
  'entity_type': 'politician',
  'label': 'Kristina Bayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179869',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kristina-bayer',
  'first_name': 'Kristina',
  'last_name': 'Bayer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Wirtschafts- und Sozialwissenschaftlerin',
  'residence': 'Herleshausen',
  'occupation': 'selbständige Beraterin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179868,
  'entity_type': 'politician',
  'label': 'Kerstin Diehl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179868',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-diehl',
  'first_name': 'Kerstin',
  'last_name': 'Diehl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Dipl.-Sozalwirtin',
  'residence': 'Gilserberg',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179867,
  'entity_type': 'politician',
  'label': 'Christoph Sippel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179867',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-sippel',
  'first_name': 'Christoph',
  'last_name': 'Sippel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': 'Melsungen',
  'occupation': 'Angestellter',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179866,
  'entity_type': 'politician',
  'label': 'Julia Herz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179866',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-herz',
  'first_name': 'Julia',
  'last_name': 'Herz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': 'Kassel',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179865,
  'entity_type': 'politician',
  'label': 'Thomas Gudehus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179865',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-gudehus',
  'first_name': 'Thomas',
  'last_name': 'Gudehus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur',
  'residence': 'Baunatal',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179864,
  'entity_type': 'politician',
  'label': 'Sascha Meier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179864',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-meier',
  'first_name': 'Sascha',
  'last_name': 'Meier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Bachelor Business Administration (BA), Kaufmann im Einzelhandel',
  'residence': 'Landkreis Kassel',
  'occupation': 'Stellvertretender Marktleiter im Handel',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179863,
  'entity_type': 'politician',
  'label': 'Stefanie Minkley',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179863',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-minkley',
  'first_name': 'Stefanie',
  'last_name': 'Minkley',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Fachärztin für Allgemeine Chirurgie und Notfallmedizin',
  'residence': 'Frankfurt',
  'occupation': 'Ärztin',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179862,
  'entity_type': 'politician',
  'label': 'Josefine Koebe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179862',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josefine-koebe',
  'first_name': 'Josefine',
  'last_name': 'Koebe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Volkswirtin',
  'residence': 'Bensheim',
  'occupation': 'Stab Wissenschaftskooperationen - Internationales bei FRÖBEL gGmbH',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179861,
  'entity_type': 'politician',
  'label': 'Simone Reiners',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179861',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simone-reiners',
  'first_name': 'Simone',
  'last_name': 'Reiners',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Heppenheim',
  'occupation': 'Verwaltungsbeamtin',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179860,
  'entity_type': 'politician',
  'label': 'Justin Witzeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179860',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/justin-witzeck',
  'first_name': 'Justin',
  'last_name': 'Witzeck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Otzberg',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179859,
  'entity_type': 'politician',
  'label': 'Anne Marquardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179859',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-marquardt',
  'first_name': 'Anne',
  'last_name': 'Marquardt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Master Governance and Public Policy',
  'residence': 'Darmstadt',
  'occupation': 'stellv. Geschäftsführerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179858,
  'entity_type': 'politician',
  'label': 'Thomas Schell',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179858',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-schell-0',
  'first_name': 'Thomas',
  'last_name': 'Schell',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Verwaltungsbeamter',
  'residence': 'Groß Gerau',
  'occupation': 'Bürgermeister',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179857,
  'entity_type': 'politician',
  'label': 'Ann-Sophie von Wirth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179857',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ann-sophie-von-wirth',
  'first_name': 'Ann-Sophie',
  'last_name': 'von Wirth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Rodgau',
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179856,
  'entity_type': 'politician',
  'label': 'Halil Öztas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179856',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/halil-oeztas',
  'first_name': 'Halil',
  'last_name': 'Öztas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Heusenstamm',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179855,
  'entity_type': 'politician',
  'label': 'Florian Obst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179855',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-obst',
  'first_name': 'Florian',
  'last_name': 'Obst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Wirtschaftsfachwirt',
  'residence': 'Neu-Isenburg',
  'occupation': 'Büroangestellter Feuerwehr Frankfurt',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179854,
  'entity_type': 'politician',
  'label': 'Rainer Schreiber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179854',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-schreiber',
  'first_name': 'Rainer',
  'last_name': 'Schreiber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Finanzbeamter,Standesbeamter, Bürgermeister a.D.',
  'residence': 'Jossgrund',
  'occupation': 'Bürgermeister a.D.',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179853,
  'entity_type': 'politician',
  'label': 'Stella Schulz-Nurtsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179853',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stella-schulz-nurtsch',
  'first_name': 'Stella',
  'last_name': 'Schulz-Nurtsch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Kauffrau',
  'residence': 'Frankfurt am Main',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179852,
  'entity_type': 'politician',
  'label': 'Katharina Stier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179852',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-stier',
  'first_name': 'Katharina',
  'last_name': 'Stier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt am Main',
  'occupation': 'Verwaltungsangestellte',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179851,
  'entity_type': 'politician',
  'label': 'Jan Pasternack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179851',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-pasternack',
  'first_name': 'Jan',
  'last_name': 'Pasternack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Diplom-Politologe',
  'residence': 'Frankfurt am Main',
  'occupation': 'Fachbereichsleiter Volkshochschule Frankfurt',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179850,
  'entity_type': 'politician',
  'label': 'Lino Leudesdorff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179850',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lino-leudesdorff',
  'first_name': 'Lino',
  'last_name': 'Leudesdorff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt Unterliederbach',
  'occupation': 'Geschäftsführer/Personalberater',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179849,
  'entity_type': 'politician',
  'label': 'Selim Balcioglu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179849',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/selim-balcioglu',
  'first_name': 'Selim',
  'last_name': 'Balcioglu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Hattersheim',
  'occupation': 'Finanzwirt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179848,
  'entity_type': 'politician',
  'label': 'Alexander Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179848',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-hofmann',
  'first_name': 'Alexander',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Master of Arts',
  'residence': 'Wiesbaden',
  'occupation': 'Referent',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179847,
  'entity_type': 'politician',
  'label': 'Anne Thomas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179847',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-thomas',
  'first_name': 'Anne',
  'last_name': 'Thomas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Reiseverkehrskauffrau (IHK)',
  'residence': 'Butzbach',
  'occupation': 'Büroleiterin ',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179846,
  'entity_type': 'politician',
  'label': 'Sebastian Imhof',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179846',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-imhof',
  'first_name': 'Sebastian',
  'last_name': 'Imhof',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Master of Arts Soziologie und Sozialwissenschaften',
  'residence': 'Oberursel',
  'occupation': 'IT Projektmanager',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179845,
  'entity_type': 'politician',
  'label': 'Jana Jeuck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179845',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jana-jeuck',
  'first_name': 'Jana',
  'last_name': 'Jeuck',
  'birth_name': 'Jeuck',
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Verwaltungswirtin',
  'residence': 'Waldbrunn (Westerwald)',
  'occupation': 'Sachbearbeiterin im Personalamt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179844,
  'entity_type': 'politician',
  'label': 'Maximilian Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179844',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-ziegler-0',
  'first_name': 'Maximilian',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'M. Sc. Wirtschaftsingenieurwesen',
  'residence': 'Crainfeld',
  'occupation': 'Projektleiter Hoch- und Tiefbau',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179843,
  'entity_type': 'politician',
  'label': 'Melanie Haubrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179843',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-haubrich',
  'first_name': 'Melanie',
  'last_name': 'Haubrich',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 185,
   'entity_type': 'party',
   'label': 'parteilos',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/185'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179842,
  'entity_type': 'politician',
  'label': 'Szymon Mazur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179842',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/szymon-mazur',
  'first_name': 'Szymon',
  'last_name': 'Mazur',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': 'Fulda',
  'occupation': 'Richter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179841,
  'entity_type': 'politician',
  'label': 'Sebastian Sack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179841',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-sack',
  'first_name': 'Sebastian',
  'last_name': 'Sack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Gymnasiallehrer',
  'residence': None,
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179840,
  'entity_type': 'politician',
  'label': 'Tamara Reiers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179840',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tamara-reiers',
  'first_name': 'Tamara',
  'last_name': 'Reiers',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Fremdsprachensekretärin',
  'residence': None,
  'occupation': 'Sachbearbeiterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179839,
  'entity_type': 'politician',
  'label': 'Martin Herbold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179839',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-herbold',
  'first_name': 'Martin',
  'last_name': 'Herbold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Wirtschaftspädagoge',
  'residence': 'Homberg (Efze)',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179838,
  'entity_type': 'politician',
  'label': 'Latif Hamamiyeh Al-Homssi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179838',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/latif-hamamiyeh-al-homssi',
  'first_name': 'Latif',
  'last_name': 'Hamamiyeh Al-Homssi',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'B.A. Orientwissenschaftler',
  'residence': None,
  'occupation': 'Integrationsbeauftragter Landkreis Waldeck-Frankenberg',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179837,
  'entity_type': 'politician',
  'label': 'Ron-Hendrik Hechelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179837',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ron-hendrik-hechelmann',
  'first_name': 'Ron-Hendrik',
  'last_name': 'Hechelmann',
  'birth_name': 'Peesel',
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'promovierter Ingenieur',
  'residence': 'Kassel',
  'occupation': 'Gruppenleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179836,
  'entity_type': 'politician',
  'label': 'Maximilian Schimmel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179836',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schimmel',
  'first_name': 'Maximilian',
  'last_name': 'Schimmel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Pfungstadt',
  'occupation': 'Projektingenieur bei der Deutschen Bahn',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179835,
  'entity_type': 'politician',
  'label': 'Peter Franz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179835',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-franz',
  'first_name': 'Peter',
  'last_name': 'Franz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Darmstadt',
  'occupation': 'selbständiger Rechtsanwalt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179834,
  'entity_type': 'politician',
  'label': 'Hartwig Jourdan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179834',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hartwig-jourdan',
  'first_name': 'Hartwig',
  'last_name': 'Jourdan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Landwirtschaftsmeister',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179833,
  'entity_type': 'politician',
  'label': 'Christoph Mikuschek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179833',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-mikuschek',
  'first_name': 'Christoph',
  'last_name': 'Mikuschek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Dietzenbach',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179832,
  'entity_type': 'politician',
  'label': 'Kim-Sarah Speer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179832',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kim-sarah-speer',
  'first_name': 'Kim-Sarah',
  'last_name': 'Speer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Offenbach am Main',
  'occupation': 'Persönliche Referentin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179831,
  'entity_type': 'politician',
  'label': 'Kaweh Nemati',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179831',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kaweh-nemati',
  'first_name': 'Kaweh',
  'last_name': 'Nemati',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt',
  'occupation': 'Unternehmer',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179830,
  'entity_type': 'politician',
  'label': 'Tanja Jost',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179830',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-jost',
  'first_name': 'Tanja',
  'last_name': 'Jost',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Kauffrau',
  'residence': 'Frankfurt am Main',
  'occupation': 'Unternehmerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179829,
  'entity_type': 'politician',
  'label': 'André Stolz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179829',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-stolz',
  'first_name': 'André',
  'last_name': 'Stolz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Volkswirt',
  'residence': 'Idstein',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179828,
  'entity_type': 'politician',
  'label': 'Ingo Schon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179828',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingo-schon',
  'first_name': 'Ingo',
  'last_name': 'Schon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Jurist',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179827,
  'entity_type': 'politician',
  'label': 'Annette Wetekam',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179827',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annette-wetekam',
  'first_name': 'Annette',
  'last_name': 'Wetekam',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ökonomin',
  'residence': 'Bad Nauheim',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179826,
  'entity_type': 'politician',
  'label': 'Patrick Appel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179826',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-appel',
  'first_name': 'Patrick',
  'last_name': 'Appel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Haupt- und Realschullehrer',
  'residence': 'Büdingen-Wolferborn',
  'occupation': 'Haupt- und Realschullehrer',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179825,
  'entity_type': 'politician',
  'label': 'Sebastian Sommer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179825',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-sommer-0',
  'first_name': 'Sebastian',
  'last_name': 'Sommer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Ministerialbeamter',
  'statistic_questions': 7,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179824,
  'entity_type': 'politician',
  'label': 'Lucas Schmitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179824',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lucas-schmitz',
  'first_name': 'Lucas',
  'last_name': 'Schmitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Buseck',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179823,
  'entity_type': 'politician',
  'label': 'Frederik Bouffier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179823',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frederik-bouffier',
  'first_name': 'Frederik',
  'last_name': 'Bouffier',
  'birth_name': 'Bouffier',
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Gießen',
  'occupation': 'Selbstständiger Rechtsanwalt',
  'statistic_questions': 8,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179822,
  'entity_type': 'politician',
  'label': 'Marie-Sophie Künkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179822',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marie-sophie-kuenkel',
  'first_name': 'Marie-Sophie',
  'last_name': 'Künkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Bad Endbach ',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179821,
  'entity_type': 'politician',
  'label': 'Stefanie Klee',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179821',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-klee',
  'first_name': 'Stefanie',
  'last_name': 'Klee',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Eiterfeld- Reckrod',
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179820,
  'entity_type': 'politician',
  'label': 'Stefan Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179820',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-schneider',
  'first_name': 'Stefan',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister Artium (Politikwissenschaft und Öffentliches Recht)',
  'residence': 'Eschwege',
  'occupation': 'Regierungsoberrat beim Regierungspräsidium Kassel',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179819,
  'entity_type': 'politician',
  'label': 'Christin Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179819',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christin-ziegler',
  'first_name': 'Christin',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gymnasiallehrerin ',
  'residence': 'Schwarzenborn ',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179818,
  'entity_type': 'politician',
  'label': 'Dominik Leyh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179818',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-leyh',
  'first_name': 'Dominik',
  'last_name': 'Leyh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Malsfeld',
  'occupation': 'Nordhessenreferent CDU/CSU Bundestagsfraktion, Landesgruppe Hessen',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179817,
  'entity_type': 'politician',
  'label': 'Maximilian Bathon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179817',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-bathon',
  'first_name': 'Maximilian',
  'last_name': 'Bathon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Teamleiter ',
  'residence': 'Kassel',
  'occupation': 'Leitender Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179816,
  'entity_type': 'politician',
  'label': 'Alexander Grotov',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179816',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-grotov',
  'first_name': 'Alexander',
  'last_name': 'Grotov',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplommusiker',
  'residence': None,
  'occupation': 'Musiker beim Staatsorchester Kassel',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179815,
  'entity_type': 'politician',
  'label': 'Anna-Maria Schölch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179815',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-maria-schoelch',
  'first_name': 'Anna-Maria',
  'last_name': 'Schölch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hotelier',
  'residence': 'Fuldabrück',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179814,
  'entity_type': 'politician',
  'label': 'Hans Christian Göttlicher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179814',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-christian-goettlicher',
  'first_name': 'Hans Christian',
  'last_name': 'Göttlicher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Immenhausen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179812,
  'entity_type': 'politician',
  'label': 'Marion Schiefer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179812',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marion-schiefer',
  'first_name': 'Marion',
  'last_name': 'Schiefer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Richterin',
  'residence': 'Reinbek',
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179811,
  'entity_type': 'politician',
  'label': 'Thomas Rudner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179811',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-rudner',
  'first_name': 'Thomas',
  'last_name': 'Rudner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdEP',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179810,
  'entity_type': 'politician',
  'label': 'Niklas Graßelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179810',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-grasselt',
  'first_name': 'Niklas',
  'last_name': 'Graßelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politik- und Wirtschaftswissenschaftler',
  'residence': 'Berlin',
  'occupation': 'MdA',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179809,
  'entity_type': 'politician',
  'label': 'Iris Gertig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179809',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-gertig',
  'first_name': 'Iris',
  'last_name': 'Gertig',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179808,
  'entity_type': 'politician',
  'label': 'Harald Braun',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179808',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-braun-0',
  'first_name': 'Harald',
  'last_name': 'Braun',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 15,
   'entity_type': 'party',
   'label': 'MLPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/15'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Drucker, Sonderpädagoge',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179807,
  'entity_type': 'politician',
  'label': 'Lena Salomon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179807',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-salomon',
  'first_name': 'Lena',
  'last_name': 'Salomon',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 15,
   'entity_type': 'party',
   'label': 'MLPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/15'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Erzieherin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179806,
  'entity_type': 'politician',
  'label': 'Thorsten Häuser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179806',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thorsten-haeuser',
  'first_name': 'Thorsten',
  'last_name': 'Häuser',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1971,
  'party': {'id': 221,
   'entity_type': 'party',
   'label': 'GFA',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/221'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Anlagensteuermann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179805,
  'entity_type': 'politician',
  'label': 'Jens Lankenau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179805',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-lankenau',
  'first_name': 'Jens',
  'last_name': 'Lankenau',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1960,
  'party': {'id': 221,
   'entity_type': 'party',
   'label': 'GFA',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/221'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kraftfahrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179804,
  'entity_type': 'politician',
  'label': 'Claudia Wandelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179804',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-wandelt',
  'first_name': 'Claudia',
  'last_name': 'Wandelt',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1978,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Musikpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179803,
  'entity_type': 'politician',
  'label': 'Dorina Kromarck-Pochciol',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179803',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dorina-kromarck-pochciol',
  'first_name': 'Dorina',
  'last_name': 'Kromarck-Pochciol',
  'birth_name': 'Uhlendorf',
  'sex': 'f',
  'year_of_birth': 1955,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Studium auf Lehramt',
  'residence': 'Bremen',
  'occupation': 'Lehrerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179802,
  'entity_type': 'politician',
  'label': 'Katharina Urban',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179802',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-urban',
  'first_name': 'Katharina',
  'last_name': 'Urban',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1967,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179801,
  'entity_type': 'politician',
  'label': 'Eckhard Piegsa',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179801',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eckhard-piegsa',
  'first_name': 'Eckhard',
  'last_name': 'Piegsa',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Arzt',
  'residence': 'Bremen',
  'occupation': 'Kinder- und Jugendarzt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179800,
  'entity_type': 'politician',
  'label': 'Katharina Gutermuth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179800',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-gutermuth',
  'first_name': 'Katharina',
  'last_name': 'Gutermuth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1995,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Online Marketing Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179799,
  'entity_type': 'politician',
  'label': 'Elke Fiereck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179799',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-fiereck',
  'first_name': 'Elke',
  'last_name': 'Fiereck',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1965,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179798,
  'entity_type': 'politician',
  'label': 'Sebastian Stumpf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179798',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-stumpf',
  'first_name': 'Sebastian',
  'last_name': 'Stumpf',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1974,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Redakteur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179797,
  'entity_type': 'politician',
  'label': 'Johanna Düsterbeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179797',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johanna-duesterbeck',
  'first_name': 'Johanna',
  'last_name': 'Düsterbeck',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1989,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Psychologin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179796,
  'entity_type': 'politician',
  'label': 'Ruth Rothgänger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179796',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruth-rothgaenger',
  'first_name': 'Ruth',
  'last_name': 'Rothgänger',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1990,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'OP-Pfleger',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179795,
  'entity_type': 'politician',
  'label': 'Aaron Teckemeier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179795',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/aaron-teckemeier',
  'first_name': 'Aaron',
  'last_name': 'Teckemeier',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1993,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Veranstaltungstechniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179794,
  'entity_type': 'politician',
  'label': 'Rachel Schulz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179794',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rachel-schulz',
  'first_name': 'Rachel',
  'last_name': 'Schulz',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1997,
  'party': {'id': 16,
   'entity_type': 'party',
   'label': 'Die PARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/16'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179793,
  'entity_type': 'politician',
  'label': 'Lothar Richter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179793',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lothar-richter',
  'first_name': 'Lothar',
  'last_name': 'Richter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 6,
   'entity_type': 'party',
   'label': 'PIRATEN',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/6'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Einzelhandelskaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179792,
  'entity_type': 'politician',
  'label': 'Harald Thomas von Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179792',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harald-thomas-von-mueller',
  'first_name': 'Harald Thomas',
  'last_name': 'von Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179791,
  'entity_type': 'politician',
  'label': 'Sven Schmiedel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179791',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-schmiedel',
  'first_name': 'Sven',
  'last_name': 'Schmiedel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Erzieher',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179790,
  'entity_type': 'politician',
  'label': 'Dennis Manfred Sommer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179790',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-manfred-sommer',
  'first_name': 'Dennis Manfred',
  'last_name': 'Sommer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Sicherheitsdienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179789,
  'entity_type': 'politician',
  'label': 'Claudia Baltrusch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179789',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-baltrusch',
  'first_name': 'Claudia',
  'last_name': 'Baltrusch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Sicherheitsdienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179788,
  'entity_type': 'politician',
  'label': 'Rüdiger Stark',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179788',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruediger-stark',
  'first_name': 'Rüdiger',
  'last_name': 'Stark',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179787,
  'entity_type': 'politician',
  'label': 'Sandra Brinkmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179787',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-brinkmann',
  'first_name': 'Sandra',
  'last_name': 'Brinkmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Steuerfachangestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179786,
  'entity_type': 'politician',
  'label': 'Jürgen Teichert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179786',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-teichert',
  'first_name': 'Jürgen',
  'last_name': 'Teichert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1942,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Pensionär',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179785,
  'entity_type': 'politician',
  'label': 'Alfred Dietrich Schumacher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179785',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfred-dietrich-schumacher',
  'first_name': 'Alfred Dietrich',
  'last_name': 'Schumacher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1944,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179784,
  'entity_type': 'politician',
  'label': 'Philipp Peters',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179784',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-peters-0',
  'first_name': 'Philipp',
  'last_name': 'Peters',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Einzelhandelskaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179783,
  'entity_type': 'politician',
  'label': 'Heiko Werner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179783',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heiko-werner',
  'first_name': 'Heiko',
  'last_name': 'Werner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufm. Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179782,
  'entity_type': 'politician',
  'label': 'Udo Brzenza',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179782',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/udo-brzenza',
  'first_name': 'Udo',
  'last_name': 'Brzenza',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Energieanlagenelektroniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179781,
  'entity_type': 'politician',
  'label': 'Jan-Hendrik Eckert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179781',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-hendrik-eckert',
  'first_name': 'Jan-Hendrik',
  'last_name': 'Eckert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Betreuer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179780,
  'entity_type': 'politician',
  'label': 'Martin Burichter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179780',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-burichter',
  'first_name': 'Martin',
  'last_name': 'Burichter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Steuerfachangestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179779,
  'entity_type': 'politician',
  'label': 'Jens-Rainer Jurgan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179779',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-rainer-jurgan',
  'first_name': 'Jens-Rainer',
  'last_name': 'Jurgan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179778,
  'entity_type': 'politician',
  'label': 'Daniel Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179778',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-schmidt',
  'first_name': 'Daniel',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Vertriebsmitarbeiter IT',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179777,
  'entity_type': 'politician',
  'label': 'Frank Köhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179777',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-koehler-0',
  'first_name': 'Frank',
  'last_name': 'Köhler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179776,
  'entity_type': 'politician',
  'label': 'Alicia Leidreiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179776',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alicia-leidreiter',
  'first_name': 'Alicia',
  'last_name': 'Leidreiter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 2005,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Schülerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179775,
  'entity_type': 'politician',
  'label': 'Meltem Sağiroğlu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179775',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/meltem-sagiroglu',
  'first_name': 'Meltem',
  'last_name': 'Sağiroğlu',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Geschäftsführerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179774,
  'entity_type': 'politician',
  'label': 'Holger Fricke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179774',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-fricke',
  'first_name': 'Holger',
  'last_name': 'Fricke',
  'birth_name': 'Bloehte',
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 74,
   'entity_type': 'party',
   'label': 'Bürger in Wut',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/74'},
  'party_past': None,
  'education': 'Chefreporter',
  'residence': 'Bremen',
  'occupation': 'Journalist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179773,
  'entity_type': 'politician',
  'label': 'Harry Heimsoth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179773',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/harry-heimsoth',
  'first_name': 'Harry',
  'last_name': 'Heimsoth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Kunstgussformer, Bildgussziseleur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179772,
  'entity_type': 'politician',
  'label': 'Aurelia Schleifert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179772',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/aurelia-schleifert',
  'first_name': 'Aurelia',
  'last_name': 'Schleifert',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Gärtnerin im Galabau',
  'residence': 'Bremen',
  'occupation': 'Verkäuferin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179771,
  'entity_type': 'politician',
  'label': 'Heike Rostkowski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179771',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-rostkowski',
  'first_name': 'Heike',
  'last_name': 'Rostkowski',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Steuerfachangestellte',
  'residence': None,
  'occupation': 'Buchhalterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179770,
  'entity_type': 'politician',
  'label': 'Olaf Hintz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179770',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-hintz',
  'first_name': 'Olaf',
  'last_name': 'Hintz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Diplom Betriebswirt und Bachelor of Arts (Hons), Groß- und Aussenhandelskaufmann',
  'residence': 'Bremen ',
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179763,
  'entity_type': 'politician',
  'label': 'Leander Rössler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179763',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leander-roessler',
  'first_name': 'Leander',
  'last_name': 'Rössler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Informatiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179762,
  'entity_type': 'politician',
  'label': 'Barbara Diop',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179762',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-diop',
  'first_name': 'Barbara',
  'last_name': 'Diop',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Krankenschwester',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179761,
  'entity_type': 'politician',
  'label': 'Jan Genin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179761',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-genin',
  'first_name': 'Jan',
  'last_name': 'Genin',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 222,
   'entity_type': 'party',
   'label': 'MERA25',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/222'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Diplom-Ingenieur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179760,
  'entity_type': 'politician',
  'label': 'Robert Meier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179760',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-meier',
  'first_name': 'Robert',
  'last_name': 'Meier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Krankenpfleger',
  'residence': 'Bremen',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179759,
  'entity_type': 'politician',
  'label': 'Michael Mix',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179759',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-mix',
  'first_name': 'Michael',
  'last_name': 'Mix',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Chemie Vordiplom',
  'residence': 'Bremen',
  'occupation': 'Versicherungsmakler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179758,
  'entity_type': 'politician',
  'label': 'Christoph Jaschek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-jaschek',
  'first_name': 'Christoph',
  'last_name': 'Jaschek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Industriekaufmann/ Betriebswirtschaft',
  'residence': 'Bremen',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179757,
  'entity_type': 'politician',
  'label': 'Anna-Laura Tiessen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179757',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-laura-tiessen',
  'first_name': 'Anna-Laura',
  'last_name': 'Tiessen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Studium Politikwissenschaft',
  'residence': 'Bremen',
  'occupation': 'Studentin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179756,
  'entity_type': 'politician',
  'label': 'Matthias Cornelsen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179756',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-cornelsen',
  'first_name': 'Matthias',
  'last_name': 'Cornelsen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Werbetechniker, Schauwerbegestalter',
  'residence': 'Bremen',
  'occupation': 'Grafikdesigner, Gesellschafter (Werbeagentur)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179755,
  'entity_type': 'politician',
  'label': 'Lotta von Bötticher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179755',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lotta-von-boetticher',
  'first_name': 'Lotta',
  'last_name': 'von Bötticher',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 193,
   'entity_type': 'party',
   'label': 'Volt',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/193'},
  'party_past': None,
  'education': 'Betriebswirtin/Volkswirtin',
  'residence': 'Bremen',
  'occupation': 'Selbstständige Start-Up Beratung',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179754,
  'entity_type': 'politician',
  'label': 'Henry Budde',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179754',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/henry-budde',
  'first_name': 'Henry',
  'last_name': 'Budde',
  'birth_name': 'Kaiser',
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 6,
   'entity_type': 'party',
   'label': 'PIRATEN',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/6'},
  'party_past': None,
  'education': 'Hauswirtschafter / Sicherheitskraft',
  'residence': 'Bremerhaven',
  'occupation': 'Berater für Sicherheitstechnik',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179753,
  'entity_type': 'politician',
  'label': 'Rasmus Hellborn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179753',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rasmus-hellborn',
  'first_name': 'Rasmus',
  'last_name': 'Hellborn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 165,
   'entity_type': 'party',
   'label': 'Partei für schulmedizinische Verjüngungsforschung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/165'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179752,
  'entity_type': 'politician',
  'label': 'Timmy Schwarz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179752',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/timmy-schwarz',
  'first_name': 'Timmy',
  'last_name': 'Schwarz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Geograph (M.Sc., M.Eng.), Magister rer. publ.',
  'residence': 'Bremen',
  'occupation': 'IT-Architekt, Unternehmensarchitekturmanagement',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179751,
  'entity_type': 'politician',
  'label': 'Lasse Schultze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179751',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lasse-schultze',
  'first_name': 'Lasse',
  'last_name': 'Schultze',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Dipl. Wirtschaftspsychologe',
  'residence': 'Bremen',
  'occupation': 'Unternehmensberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179744,
  'entity_type': 'politician',
  'label': 'Martin Wandelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179744',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-wandelt',
  'first_name': 'Martin',
  'last_name': 'Wandelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 201,
   'entity_type': 'party',
   'label': 'dieBasis',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/201'},
  'party_past': None,
  'education': 'Technischer Redakteur',
  'residence': 'Bremen',
  'occupation': 'IT-Unternehmer',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179743,
  'entity_type': 'politician',
  'label': 'Tristan Reim',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179743',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tristan-reim',
  'first_name': 'Tristan',
  'last_name': 'Reim',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179742,
  'entity_type': 'politician',
  'label': 'Marco Juschkeit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179742',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-juschkeit',
  'first_name': 'Marco',
  'last_name': 'Juschkeit',
  'birth_name': 'Juschkeit',
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Betriebswirt Fachrichtung Wirtschaftsinformatik',
  'residence': 'Bremen',
  'occupation': 'Berufsoffizier (Bundeswehr)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179741,
  'entity_type': 'politician',
  'label': 'Ilkan Kandaz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179741',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilkan-kandaz',
  'first_name': 'Ilkan',
  'last_name': 'Kandaz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Student der Wirtschaftsinformatik',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179740,
  'entity_type': 'politician',
  'label': 'Tobias Huch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179740',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-huch',
  'first_name': 'Tobias',
  'last_name': 'Huch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Journalist, Publizist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179739,
  'entity_type': 'politician',
  'label': 'Kamber Acik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179739',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kamber-acik',
  'first_name': 'Kamber',
  'last_name': 'Acik',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179738,
  'entity_type': 'politician',
  'label': 'Florian Schachtsiek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179738',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-schachtsiek',
  'first_name': 'Florian',
  'last_name': 'Schachtsiek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Hotelkaufmann',
  'residence': 'Bremen',
  'occupation': 'Leiter für IT- Projekte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179737,
  'entity_type': 'politician',
  'label': 'Björn Tuchscherer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179737',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-tuchscherer',
  'first_name': 'Björn',
  'last_name': 'Tuchscherer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': 'Bremen Überseestadt',
  'occupation': 'Leiter Photovoltaik',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179736,
  'entity_type': 'politician',
  'label': 'Frank Seidel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179736',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-seidel',
  'first_name': 'Frank',
  'last_name': 'Seidel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Fleischer, Versicherungsfachmann',
  'residence': 'Bremen',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179735,
  'entity_type': 'politician',
  'label': 'Louis Lenkeit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179735',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/louis-lenkeit',
  'first_name': 'Louis',
  'last_name': 'Lenkeit',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Student der BWL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179734,
  'entity_type': 'politician',
  'label': 'Julian Serbest',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179734',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-serbest',
  'first_name': 'Julian',
  'last_name': 'Serbest',
  'birth_name': 'Serbest',
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Einzelhandelskaufmann, geprüfter Fachmann für Versicherungsvermittlung',
  'residence': 'Bremen',
  'occupation': 'Einzelhandelskaufmann angestellter, Selbstständiger Finanzvermittler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179733,
  'entity_type': 'politician',
  'label': 'Gwen Marei Sohns',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179733',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gwen-marei-sohns',
  'first_name': 'Gwen Marei',
  'last_name': 'Sohns',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'M.A. Wirtschaftsgeschichte',
  'residence': 'Bremen',
  'occupation': 'Sachbearbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179732,
  'entity_type': 'politician',
  'label': 'Ulla Linnemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179732',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulla-linnemann',
  'first_name': 'Ulla',
  'last_name': 'Linnemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1953,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': None,
  'occupation': 'Fachanwältin für Immobilien- und Familienrecht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179731,
  'entity_type': 'politician',
  'label': 'Fynn Voigt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179731',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fynn-voigt',
  'first_name': 'Fynn',
  'last_name': 'Voigt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Student der Wirtschaftswissenschaften',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179730,
  'entity_type': 'politician',
  'label': 'Ole Humpich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179730',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ole-humpich',
  'first_name': 'Ole',
  'last_name': 'Humpich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Kaufmann für Groß- und Außenhandel',
  'residence': 'Bremen',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179729,
  'entity_type': 'politician',
  'label': 'Marcel Schröder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179729',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcel-schroeder',
  'first_name': 'Marcel',
  'last_name': 'Schröder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Bremen',
  'occupation': 'Wahlkreis-Büroleiter bei Dr. Volker Redder (MdB)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179728,
  'entity_type': 'politician',
  'label': 'Luca Heise',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179728',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/luca-heise',
  'first_name': 'Luca',
  'last_name': 'Heise',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 2001,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': 'Bremerhaven',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179727,
  'entity_type': 'politician',
  'label': 'Björn Rosenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179727',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-rosenberg',
  'first_name': 'Björn',
  'last_name': 'Rosenberg',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179726,
  'entity_type': 'politician',
  'label': 'Cafer Işin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179726',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cafer-isin',
  'first_name': 'Cafer',
  'last_name': 'Işin',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179725,
  'entity_type': 'politician',
  'label': 'Muhlis Kocaağa',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179725',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/muhlis-kocaaga',
  'first_name': 'Muhlis',
  'last_name': 'Kocaağa',
  'birth_name': 'Kocaaga',
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Dipl. -Ing. der Umweltwissenschaften',
  'residence': 'Bremerhaven',
  'occupation': 'Umweltwissenschaftler ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179724,
  'entity_type': 'politician',
  'label': 'Klaas Anders',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179724',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaas-anders',
  'first_name': 'Klaas',
  'last_name': 'Anders',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'M.A.',
  'residence': 'Bremen',
  'occupation': 'Historiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179723,
  'entity_type': 'politician',
  'label': 'Laila Malin Göbberd',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179723',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laila-malin-goebberd',
  'first_name': 'Laila Malin',
  'last_name': 'Göbberd',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179722,
  'entity_type': 'politician',
  'label': 'Tim Sültenfuß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179722',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-sueltenfuss',
  'first_name': 'Tim',
  'last_name': 'Sültenfuß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Bremen',
  'occupation': 'Head of Legal Department Sea-Watch e.V.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179721,
  'entity_type': 'politician',
  'label': 'Fatma Nas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179721',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fatma-nas',
  'first_name': 'Fatma',
  'last_name': 'Nas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]
len(data)
1000
url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?&range_end=1000'
response = requests.get(url)
data = response.json()['data']

Request Funktion verallgemeinern#

def request_data(url):
    response = requests.get(url)
    return response.json()['data']
def request_data(url, limit):
    limit_str = f'&range_end={limit}'
    response = requests.get(url + limit_str)
    return response.json()['data']
url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
data = request_data(url, 10)
len(data)
10
def request_data(url, limit=1000):
    limit_str = f'&range_end={limit}'
    response = requests.get(url + limit_str)
    return response.json()['data']
url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
data = request_data(url, limit=5)
len(data)
5

Daten zu einzelnen Politikern abfragen#

https://www.abgeordnetenwatch.de/api/entitaeten/politician

url = 'https://www.abgeordnetenwatch.de/api/v2/politicians/130471?'
data = request_data(url)
data
{'id': 130471,
 'entity_type': 'politician',
 'label': 'Lena Zingsheim-Zobel',
 'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/130471',
 'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-zingsheim-zobel',
 'first_name': 'Lena',
 'last_name': 'Zingsheim-Zobel',
 'birth_name': 'Zingsheim',
 'sex': 'f',
 'year_of_birth': 1993,
 'party': {'id': 5,
  'entity_type': 'party',
  'label': 'Bündnis 90/Die Grünen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
 'party_past': None,
 'education': 'Lehramt Sonderpädagogische Förderung',
 'residence': 'Mönchengladbach',
 'occupation': 'Sonderpädagogin in der Inklusion',
 'statistic_questions': 2,
 'statistic_questions_answered': 2,
 'ext_id_bundestagsverwaltung': None,
 'qid_wikidata': None,
 'field_title': None}
politiker_id = '79236'
url = f'https://www.abgeordnetenwatch.de/api/v2/politicians/{politiker_id}?'
data = request_data(url)
data
{'id': 79236,
 'entity_type': 'politician',
 'label': 'Birgit Kömpel',
 'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/79236',
 'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-koempel',
 'first_name': 'Birgit',
 'last_name': 'Kömpel',
 'birth_name': 'Schwab',
 'sex': 'f',
 'year_of_birth': 1967,
 'party': {'id': 1,
  'entity_type': 'party',
  'label': 'SPD',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
 'party_past': None,
 'education': None,
 'residence': 'Eichenzell',
 'occupation': 'Personalberaterin',
 'statistic_questions': 2,
 'statistic_questions_answered': 2,
 'ext_id_bundestagsverwaltung': None,
 'qid_wikidata': 'Q15792744',
 'field_title': None}

In der Query filtern#

# Nach Vornamen filtern
base_url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
query_filter = "last_name[cn]=üll"
url = base_url + query_filter
data = request_data(url)
# Nach Geburtsjahr kleiner gleich X
base_url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
query_filter = "year_of_birth[lte]=1932"
url = base_url + query_filter
data = request_data(url)
data
[{'id': 173140,
  'entity_type': 'politician',
  'label': 'Egon Zarnowka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/egon-zarnowka',
  'first_name': 'Egon',
  'last_name': 'Zarnowka',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1930,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur / Architekt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165371,
  'entity_type': 'politician',
  'label': 'Ursula Haverbeck-Wetzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165371',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ursula-haverbeck-wetzel',
  'first_name': 'Ursula',
  'last_name': 'Haverbeck-Wetzel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1928,
  'party': {'id': 84,
   'entity_type': 'party',
   'label': 'Die Rechte',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/84'},
  'party_past': None,
  'education': 'Pädagogin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 140912,
  'entity_type': 'politician',
  'label': 'Gerhard Wehse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/140912',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-wehse',
  'first_name': 'Gerhard',
  'last_name': 'Wehse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Arbeiter',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139140,
  'entity_type': 'politician',
  'label': 'Klaus Beese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-beese',
  'first_name': 'Klaus',
  'last_name': 'Beese',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 60,
   'entity_type': 'party',
   'label': 'DiePinken/Bündnis 21',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/60'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139129,
  'entity_type': 'politician',
  'label': 'Karl Dethlefs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139129',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-dethlefs',
  'first_name': 'Karl',
  'last_name': 'Dethlefs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1928,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138609,
  'entity_type': 'politician',
  'label': 'Walter Engel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138609',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-engel',
  'first_name': 'Walter',
  'last_name': 'Engel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Buchautor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138283,
  'entity_type': 'politician',
  'label': 'Ludwig Bayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138283',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-bayer',
  'first_name': 'Ludwig',
  'last_name': 'Bayer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1920,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137989,
  'entity_type': 'politician',
  'label': 'Hans Schwenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137989',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-schwenk',
  'first_name': 'Hans',
  'last_name': 'Schwenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Rentner',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134719,
  'entity_type': 'politician',
  'label': 'Violet Wippold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/violet-wippold',
  'first_name': 'Violet',
  'last_name': 'Wippold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1925,
  'party': {'id': 54,
   'entity_type': 'party',
   'label': 'Kusch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/54'},
  'party_past': None,
  'education': 'Bankangestellte i.R.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134633,
  'entity_type': 'politician',
  'label': 'Rolf Bialas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rolf-bialas',
  'first_name': 'Rolf',
  'last_name': 'Bialas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1929,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Arzt, Bausenator a.D.',
  'residence': None,
  'occupation': 'Pensionär',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134491,
  'entity_type': 'politician',
  'label': 'Ingeborg Mahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134491',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-mahn',
  'first_name': 'Ingeborg',
  'last_name': 'Mahn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1925,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': 'Lehrerin',
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134489,
  'entity_type': 'politician',
  'label': 'Inge Blötz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134489',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/inge-bloetz',
  'first_name': 'Inge',
  'last_name': 'Blötz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1930,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Einzelhandelskauffrau',
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134477,
  'entity_type': 'politician',
  'label': 'Helwig Knothe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134477',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helwig-knothe',
  'first_name': 'Helwig',
  'last_name': 'Knothe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1927,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Lehrer a.D.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 134217,
  'entity_type': 'politician',
  'label': 'Robert Erlebach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/134217',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-erlebach',
  'first_name': 'Robert',
  'last_name': 'Erlebach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133982,
  'entity_type': 'politician',
  'label': 'Helmut Schenke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133982',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helmut-schenke',
  'first_name': 'Helmut',
  'last_name': 'Schenke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 7,
   'entity_type': 'party',
   'label': 'FREIE WÄHLER',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/7'},
  'party_past': None,
  'education': 'Wollegroßhandel Import/Export',
  'residence': None,
  'occupation': 'Importkaufmann/selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133896,
  'entity_type': 'politician',
  'label': 'Erich Georg Wilhelm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133896',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-georg-wilhelm',
  'first_name': 'Erich Georg',
  'last_name': 'Wilhelm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1921,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133774,
  'entity_type': 'politician',
  'label': 'Barbara Rütting',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133774',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-ruetting',
  'first_name': 'Barbara',
  'last_name': 'Rütting',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1927,
  'party': {'id': 5,
   'entity_type': 'party',
   'label': 'Bündnis 90/Die Grünen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/5'},
  'party_past': None,
  'education': 'Ausgebildete Gesundheitsberaterin',
  'residence': None,
  'occupation': 'MdL, Buchautorin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133760,
  'entity_type': 'politician',
  'label': 'Anneliese Michel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133760',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anneliese-michel',
  'first_name': 'Anneliese',
  'last_name': 'Michel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1915,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Verwaltungsangestellte i.R.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133529,
  'entity_type': 'politician',
  'label': 'Gisela Wild',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133529',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gisela-wild',
  'first_name': 'Gisela',
  'last_name': 'Wild',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1932,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133527,
  'entity_type': 'politician',
  'label': 'Dorothea Tappert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133527',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dorothea-tappert',
  'first_name': 'Dorothea',
  'last_name': 'Tappert',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1926,
  'party': {'id': 54,
   'entity_type': 'party',
   'label': 'Kusch',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/54'},
  'party_past': None,
  'education': 'Ärztin',
  'residence': None,
  'occupation': 'Pensionärin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133350,
  'entity_type': 'politician',
  'label': 'Dietrich Hoth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133350',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietrich-hoth',
  'first_name': 'Dietrich',
  'last_name': 'Hoth',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1927,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politologe',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 133178,
  'entity_type': 'politician',
  'label': 'Georg Franz von Groeling-Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/133178',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-franz-von-groeling-mueller',
  'first_name': 'Georg Franz',
  'last_name': 'von Groeling-Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1927,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Insustriekaufmann, Dipl. Hdl.',
  'residence': None,
  'occupation': 'Oberstudienrat a. D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 131867,
  'entity_type': 'politician',
  'label': 'Erich Rupp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/131867',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erich-rupp',
  'first_name': 'Erich',
  'last_name': 'Rupp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 12,
   'entity_type': 'party',
   'label': 'ÖDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/12'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 125106,
  'entity_type': 'politician',
  'label': 'Hans-Joachim Wohlfeld',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/125106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-joachim-wohlfeld',
  'first_name': 'Hans-Joachim',
  'last_name': 'Wohlfeld',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 159,
   'entity_type': 'party',
   'label': 'Ab jetzt...Demokratie durch Volksabstimmung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/159'},
  'party_past': None,
  'education': 'Bautechniker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124921,
  'entity_type': 'politician',
  'label': 'Daniel Schütz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124921',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-schutz',
  'first_name': 'Daniel',
  'last_name': 'Schütz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 19,
   'entity_type': 'party',
   'label': 'BAYERNPARTEI',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/19'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124851,
  'entity_type': 'politician',
  'label': 'Bernhard Wirtz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124851',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernhard-wirtz',
  'first_name': 'Bernhard',
  'last_name': 'Wirtz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 159,
   'entity_type': 'party',
   'label': 'Ab jetzt...Demokratie durch Volksabstimmung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/159'},
  'party_past': None,
  'education': 'Rentner',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124498,
  'entity_type': 'politician',
  'label': 'Karl-Heinrich Wickmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124498',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-heinrich-wickmann',
  'first_name': 'Karl-Heinrich',
  'last_name': 'Wickmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Rentner',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124471,
  'entity_type': 'politician',
  'label': 'Ivan Denes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124471',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ivan-denes',
  'first_name': 'Ivan',
  'last_name': 'Denes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1928,
  'party': {'id': 114,
   'entity_type': 'party',
   'label': 'Die Konservativen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/114'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Journalist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124465,
  'entity_type': 'politician',
  'label': 'Ilse Herkorn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124465',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilse-herkorn',
  'first_name': 'Ilse',
  'last_name': 'Herkorn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1929,
  'party': {'id': 114,
   'entity_type': 'party',
   'label': 'Die Konservativen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/114'},
  'party_past': None,
  'education': 'Kfm. Angestellte, Betriebsrats-Vorsitzende a.D.',
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124437,
  'entity_type': 'politician',
  'label': 'Gerhard Einrauch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124437',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-einrauch',
  'first_name': 'Gerhard',
  'last_name': 'Einrauch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1929,
  'party': {'id': 22,
   'entity_type': 'party',
   'label': 'REP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/22'},
  'party_past': None,
  'education': 'Bauingenieur',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124424,
  'entity_type': 'politician',
  'label': 'Elfriede Budina',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124424',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elfriede-budina',
  'first_name': 'Elfriede',
  'last_name': 'Budina',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1928,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Rentnerin',
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 124185,
  'entity_type': 'politician',
  'label': 'Heinz Maluch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/124185',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-maluch',
  'first_name': 'Heinz',
  'last_name': 'Maluch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1929,
  'party': {'id': 29,
   'entity_type': 'party',
   'label': 'GUT',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/29'},
  'party_past': None,
  'education': 'Dipl. medizinischer Pädagoge',
  'residence': None,
  'occupation': 'im Ruhestand',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 121350,
  'entity_type': 'politician',
  'label': 'Heinrich Förster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/121350',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-forster',
  'first_name': 'Heinrich',
  'last_name': 'Förster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1927,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 121106,
  'entity_type': 'politician',
  'label': 'Eleonore Rau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/121106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eleonore-rau',
  'first_name': 'Eleonore',
  'last_name': 'Rau',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1928,
  'party': {'id': 58,
   'entity_type': 'party',
   'label': 'BGD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/58'},
  'party_past': None,
  'education': 'Fachtierärztin für Rinder',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 120245,
  'entity_type': 'politician',
  'label': 'Konrad Bentz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/120245',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/konrad-bentz',
  'first_name': 'Konrad',
  'last_name': 'Bentz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1920,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119919,
  'entity_type': 'politician',
  'label': 'Erwine Lehming',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119919',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erwine-lehming',
  'first_name': 'Erwine',
  'last_name': 'Lehming',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1928,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Diplom Sozialpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119479,
  'entity_type': 'politician',
  'label': 'Walter Gruber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119479',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-gruber',
  'first_name': 'Walter',
  'last_name': 'Gruber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'k.A.',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119426,
  'entity_type': 'politician',
  'label': 'Ulrich Harder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119426',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrich-harder',
  'first_name': 'Ulrich',
  'last_name': 'Harder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1929,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Diplom-Kaufmann',
  'residence': None,
  'occupation': 'Diplom-Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119262,
  'entity_type': 'politician',
  'label': 'Richard Ludwig Heinrich Karl Vahlberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119262',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/richard-ludwig-heinrich-karl-vahlberg',
  'first_name': 'Richard Ludwig Heinrich Karl',
  'last_name': 'Vahlberg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Dipl.Ingenieur',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119255,
  'entity_type': 'politician',
  'label': 'Reinhold Seiss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119255',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reinhold-seiss',
  'first_name': 'Reinhold',
  'last_name': 'Seiss',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Landwirt',
  'residence': None,
  'occupation': 'k.A.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119220,
  'entity_type': 'politician',
  'label': 'Gottfried Schubert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119220',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gottfried-schubert',
  'first_name': 'Gottfried',
  'last_name': 'Schubert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 22,
   'entity_type': 'party',
   'label': 'REP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/22'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur, Prof. i.R.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119214,
  'entity_type': 'politician',
  'label': 'Heinrich Schirmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119214',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-schirmer',
  'first_name': 'Heinrich',
  'last_name': 'Schirmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1928,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'Schreiner, Gewerbelehrer, Dr. rer. pol.',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 119146,
  'entity_type': 'politician',
  'label': 'Otto Schily',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/119146',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/otto-schily',
  'first_name': 'Otto',
  'last_name': 'Schily',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 1,
   'entity_type': 'party',
   'label': 'SPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/1'},
  'party_past': None,
  'education': 'Rechtsanwalt, Bundesminister des Innern',
  'residence': None,
  'occupation': 'Mitglied des Deutschen Bundestages, Bundesministerium des Innern',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q60788',
  'field_title': None},
 {'id': 118762,
  'entity_type': 'politician',
  'label': 'Horst Sinning',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118762',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/horst-sinning',
  'first_name': 'Horst',
  'last_name': 'Sinning',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1921,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'Apotheker',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 118551,
  'entity_type': 'politician',
  'label': 'Franz Schönhuber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118551',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-schoenhuber',
  'first_name': 'Franz',
  'last_name': 'Schönhuber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1923,
  'party': {'id': 21,
   'entity_type': 'party',
   'label': 'NPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/21'},
  'party_past': None,
  'education': 'k.A.',
  'residence': None,
  'occupation': 'Publizist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 118509,
  'entity_type': 'politician',
  'label': 'Ernst Seng',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118509',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ernst-seng',
  'first_name': 'Ernst',
  'last_name': 'Seng',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 14,
   'entity_type': 'party',
   'label': 'PBC Partei Bibeltreuer Christen',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/14'},
  'party_past': None,
  'education': 'k.A.',
  'residence': None,
  'occupation': 'Beamter i.R.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 118389,
  'entity_type': 'politician',
  'label': 'Ingeborg Gräßer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118389',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingeborg-grasser',
  'first_name': 'Ingeborg',
  'last_name': 'Gräßer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1930,
  'party': {'id': 10,
   'entity_type': 'party',
   'label': 'Tierschutzpartei',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/10'},
  'party_past': None,
  'education': 'Gymnasiallehrerin',
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 118379,
  'entity_type': 'politician',
  'label': 'Heinz Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118379',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-schaefer',
  'first_name': 'Heinz',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1927,
  'party': {'id': 8,
   'entity_type': 'party',
   'label': 'DIE LINKE',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/8'},
  'party_past': None,
  'education': 'k.A.',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 117943,
  'entity_type': 'politician',
  'label': 'Rother von Kieseritzky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/117943',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rother-von-kieseritzky',
  'first_name': 'Rother',
  'last_name': 'von Kieseritzky',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1929,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': None,
  'occupation': 'Regierungsdirektor a.D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 117703,
  'entity_type': 'politician',
  'label': 'Felix Volck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/117703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-volck',
  'first_name': 'Felix',
  'last_name': 'Volck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 69,
   'entity_type': 'party',
   'label': 'pro Deutschland',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/69'},
  'party_past': None,
  'education': 'Berufskraftfahrer',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 66851,
  'entity_type': 'politician',
  'label': 'Rolf Hansen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/66851',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rolf-hansen',
  'first_name': 'Rolf',
  'last_name': 'Hansen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1930,
  'party': {'id': 41,
   'entity_type': 'party',
   'label': 'Neue Liberale',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/41'},
  'party_past': None,
  'education': 'technische Ausbildung',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 66772,
  'entity_type': 'politician',
  'label': 'Hans-Günther Meißner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/66772',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-gunther-meissner',
  'first_name': 'Hans-Günther',
  'last_name': 'Meißner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1932,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Lehramtsstudium',
  'residence': None,
  'occupation': 'Im Ruhestand',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 66767,
  'entity_type': 'politician',
  'label': 'Erika Beit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/66767',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erika-beit',
  'first_name': 'Erika',
  'last_name': 'Beit',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1929,
  'party': {'id': 4,
   'entity_type': 'party',
   'label': 'FDP',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/4'},
  'party_past': None,
  'education': 'Exportkauffrau',
  'residence': None,
  'occupation': 'im Ruhestand',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 29807,
  'entity_type': 'politician',
  'label': 'Artur Dreischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/29807',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/artur-dreischer',
  'first_name': 'Artur',
  'last_name': 'Dreischer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1928,
  'party': {'id': 159,
   'entity_type': 'party',
   'label': 'Ab jetzt...Demokratie durch Volksabstimmung',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/159'},
  'party_past': None,
  'education': 'Arzt',
  'residence': None,
  'occupation': 'Allgemeinmediziner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 29156,
  'entity_type': 'politician',
  'label': 'Herbert Eckler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/29156',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/herbert-eckler',
  'first_name': 'Herbert',
  'last_name': 'Eckler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1931,
  'party': {'id': 13,
   'entity_type': 'party',
   'label': 'BüSo',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/13'},
  'party_past': None,
  'education': 'Bauingenieur',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]
# Mehrere Filter mit & verknüpfen
base_url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
query_filter = "residence=Leipzig&first_name=Klaus"
url = base_url + query_filter
data = request_data(url)
data
[{'id': 118911,
  'entity_type': 'politician',
  'label': 'Klaus Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/118911',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-fuchs',
  'first_name': 'Klaus',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 15,
   'entity_type': 'party',
   'label': 'MLPD',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/15'},
  'party_past': None,
  'education': 'Kommunikationselektroniker',
  'residence': 'Leipzig',
  'occupation': 'Kommunikationselektroniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]
# Filtern auf Basis einer anderen Entität
base_url = 'https://www.abgeordnetenwatch.de/api/v2/politicians?'
query_filter = "party[entity.label]=CDU"
url = base_url + query_filter
data = request_data(url)
data
[{'id': 180758,
  'entity_type': 'politician',
  'label': 'Cornelia von Loga',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-von-loga',
  'first_name': 'Cornelia',
  'last_name': 'von Loga',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Baden-Baden',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 180757,
  'entity_type': 'politician',
  'label': 'Jens Münster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/180757',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-muenster',
  'first_name': 'Jens',
  'last_name': 'Münster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179836,
  'entity_type': 'politician',
  'label': 'Maximilian Schimmel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179836',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-schimmel',
  'first_name': 'Maximilian',
  'last_name': 'Schimmel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Pfungstadt',
  'occupation': 'Projektingenieur bei der Deutschen Bahn',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179835,
  'entity_type': 'politician',
  'label': 'Peter Franz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179835',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-franz',
  'first_name': 'Peter',
  'last_name': 'Franz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Darmstadt',
  'occupation': 'selbständiger Rechtsanwalt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179834,
  'entity_type': 'politician',
  'label': 'Hartwig Jourdan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179834',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hartwig-jourdan',
  'first_name': 'Hartwig',
  'last_name': 'Jourdan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Darmstadt',
  'occupation': 'Landwirtschaftsmeister',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179833,
  'entity_type': 'politician',
  'label': 'Christoph Mikuschek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179833',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-mikuschek',
  'first_name': 'Christoph',
  'last_name': 'Mikuschek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Dietzenbach',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179832,
  'entity_type': 'politician',
  'label': 'Kim-Sarah Speer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179832',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kim-sarah-speer',
  'first_name': 'Kim-Sarah',
  'last_name': 'Speer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Offenbach am Main',
  'occupation': 'Persönliche Referentin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179831,
  'entity_type': 'politician',
  'label': 'Kaweh Nemati',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179831',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kaweh-nemati',
  'first_name': 'Kaweh',
  'last_name': 'Nemati',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Frankfurt',
  'occupation': 'Unternehmer',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179830,
  'entity_type': 'politician',
  'label': 'Tanja Jost',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179830',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-jost',
  'first_name': 'Tanja',
  'last_name': 'Jost',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Kauffrau',
  'residence': 'Frankfurt am Main',
  'occupation': 'Unternehmerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179829,
  'entity_type': 'politician',
  'label': 'André Stolz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179829',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-stolz',
  'first_name': 'André',
  'last_name': 'Stolz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Volkswirt',
  'residence': 'Idstein',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179828,
  'entity_type': 'politician',
  'label': 'Ingo Schon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179828',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingo-schon',
  'first_name': 'Ingo',
  'last_name': 'Schon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Jurist',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179827,
  'entity_type': 'politician',
  'label': 'Annette Wetekam',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179827',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annette-wetekam',
  'first_name': 'Annette',
  'last_name': 'Wetekam',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ökonomin',
  'residence': 'Bad Nauheim',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179826,
  'entity_type': 'politician',
  'label': 'Patrick Appel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179826',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-appel',
  'first_name': 'Patrick',
  'last_name': 'Appel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Haupt- und Realschullehrer',
  'residence': 'Büdingen-Wolferborn',
  'occupation': 'Haupt- und Realschullehrer',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179825,
  'entity_type': 'politician',
  'label': 'Sebastian Sommer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179825',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-sommer-0',
  'first_name': 'Sebastian',
  'last_name': 'Sommer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Ministerialbeamter',
  'statistic_questions': 7,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179824,
  'entity_type': 'politician',
  'label': 'Lucas Schmitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179824',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lucas-schmitz',
  'first_name': 'Lucas',
  'last_name': 'Schmitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Buseck',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179823,
  'entity_type': 'politician',
  'label': 'Frederik Bouffier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179823',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frederik-bouffier',
  'first_name': 'Frederik',
  'last_name': 'Bouffier',
  'birth_name': 'Bouffier',
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Gießen',
  'occupation': 'Selbstständiger Rechtsanwalt',
  'statistic_questions': 8,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179822,
  'entity_type': 'politician',
  'label': 'Marie-Sophie Künkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179822',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marie-sophie-kuenkel',
  'first_name': 'Marie-Sophie',
  'last_name': 'Künkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Bad Endbach ',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179821,
  'entity_type': 'politician',
  'label': 'Stefanie Klee',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179821',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-klee',
  'first_name': 'Stefanie',
  'last_name': 'Klee',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Eiterfeld- Reckrod',
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179820,
  'entity_type': 'politician',
  'label': 'Stefan Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179820',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-schneider',
  'first_name': 'Stefan',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister Artium (Politikwissenschaft und Öffentliches Recht)',
  'residence': 'Eschwege',
  'occupation': 'Regierungsoberrat beim Regierungspräsidium Kassel',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179819,
  'entity_type': 'politician',
  'label': 'Christin Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179819',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christin-ziegler',
  'first_name': 'Christin',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gymnasiallehrerin ',
  'residence': 'Schwarzenborn ',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179818,
  'entity_type': 'politician',
  'label': 'Dominik Leyh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179818',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-leyh',
  'first_name': 'Dominik',
  'last_name': 'Leyh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Malsfeld',
  'occupation': 'Nordhessenreferent CDU/CSU Bundestagsfraktion, Landesgruppe Hessen',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179817,
  'entity_type': 'politician',
  'label': 'Maximilian Bathon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179817',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-bathon',
  'first_name': 'Maximilian',
  'last_name': 'Bathon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Teamleiter ',
  'residence': 'Kassel',
  'occupation': 'Leitender Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179816,
  'entity_type': 'politician',
  'label': 'Alexander Grotov',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179816',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-grotov',
  'first_name': 'Alexander',
  'last_name': 'Grotov',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplommusiker',
  'residence': None,
  'occupation': 'Musiker beim Staatsorchester Kassel',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179815,
  'entity_type': 'politician',
  'label': 'Anna-Maria Schölch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179815',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-maria-schoelch',
  'first_name': 'Anna-Maria',
  'last_name': 'Schölch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hotelier',
  'residence': 'Fuldabrück',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179814,
  'entity_type': 'politician',
  'label': 'Hans Christian Göttlicher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179814',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-christian-goettlicher',
  'first_name': 'Hans Christian',
  'last_name': 'Göttlicher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Immenhausen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179812,
  'entity_type': 'politician',
  'label': 'Marion Schiefer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179812',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marion-schiefer',
  'first_name': 'Marion',
  'last_name': 'Schiefer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Richterin',
  'residence': 'Reinbek',
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179810,
  'entity_type': 'politician',
  'label': 'Niklas Graßelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179810',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-grasselt',
  'first_name': 'Niklas',
  'last_name': 'Graßelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politik- und Wirtschaftswissenschaftler',
  'residence': 'Berlin',
  'occupation': 'MdA',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179809,
  'entity_type': 'politician',
  'label': 'Iris Gertig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179809',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-gertig',
  'first_name': 'Iris',
  'last_name': 'Gertig',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179648,
  'entity_type': 'politician',
  'label': 'Bennet Bullmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179648',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bennet-bullmann',
  'first_name': 'Bennet',
  'last_name': 'Bullmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179647,
  'entity_type': 'politician',
  'label': 'Mevlüt Erdemir',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179647',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mevluet-erdemir',
  'first_name': 'Mevlüt',
  'last_name': 'Erdemir',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'B.A. Wirtschaft und Verwaltung',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179646,
  'entity_type': 'politician',
  'label': 'Björn Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179646',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-wagner',
  'first_name': 'Björn',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Polizist / Personalratsvorsitzender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179645,
  'entity_type': 'politician',
  'label': 'Sandra Schmull',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179645',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-schmull',
  'first_name': 'Sandra',
  'last_name': 'Schmull',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtswissenschaft und Unternehmensrecht',
  'residence': None,
  'occupation': 'Legal Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179644,
  'entity_type': 'politician',
  'label': 'Marcel Zander',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179644',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcel-zander',
  'first_name': 'Marcel',
  'last_name': 'Zander',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179643,
  'entity_type': 'politician',
  'label': 'Birgit Krogemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179643',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-krogemann',
  'first_name': 'Birgit',
  'last_name': 'Krogemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bürokauffrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179642,
  'entity_type': 'politician',
  'label': 'Olaf Borgelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179642',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-borgelt',
  'first_name': 'Olaf',
  'last_name': 'Borgelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179641,
  'entity_type': 'politician',
  'label': 'Heidrun-Bärbel Wedler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179641',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heidrun-baerbel-wedler',
  'first_name': 'Heidrun-Bärbel',
  'last_name': 'Wedler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rentnerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179640,
  'entity_type': 'politician',
  'label': 'Thomas Bergmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179640',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-bergmann-0',
  'first_name': 'Thomas',
  'last_name': 'Bergmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179639,
  'entity_type': 'politician',
  'label': 'Sandra Albers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179639',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-albers',
  'first_name': 'Sandra',
  'last_name': 'Albers',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179637,
  'entity_type': 'politician',
  'label': 'Martina Seifert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179637',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-seifert',
  'first_name': 'Martina',
  'last_name': 'Seifert',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Beamtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179636,
  'entity_type': 'politician',
  'label': 'Thomas Schächter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179636',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-schaechter',
  'first_name': 'Thomas',
  'last_name': 'Schächter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179635,
  'entity_type': 'politician',
  'label': 'Mine Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179635',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mine-mueller',
  'first_name': 'Mine',
  'last_name': 'Müller',
  'birth_name': 'Bozatli',
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieurin (FH)',
  'residence': 'Bremen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179634,
  'entity_type': 'politician',
  'label': 'Yunas Kaya',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179634',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yunas-kaya',
  'first_name': 'Yunas',
  'last_name': 'Kaya',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179633,
  'entity_type': 'politician',
  'label': 'Simone Teetzen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simone-teetzen',
  'first_name': 'Simone',
  'last_name': 'Teetzen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179632,
  'entity_type': 'politician',
  'label': 'Marcus Tödtheide',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179632',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcus-toedtheide',
  'first_name': 'Marcus',
  'last_name': 'Tödtheide',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sparkassenbetriebswirt',
  'residence': 'Bremen',
  'occupation': 'Firmenkundenbetreuer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179631,
  'entity_type': 'politician',
  'label': 'Mehmet Genc',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179631',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mehmet-genc',
  'first_name': 'Mehmet',
  'last_name': 'Genc',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Projektmanager',
  'residence': 'Bremen ',
  'occupation': 'Maschinenbauingenieur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179630,
  'entity_type': 'politician',
  'label': 'Jannis Fricke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179630',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jannis-fricke',
  'first_name': 'Jannis',
  'last_name': 'Fricke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2000,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Eisenbahner',
  'residence': 'Bremen',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179629,
  'entity_type': 'politician',
  'label': 'Sarah Matschulla',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179629',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-matschulla',
  'first_name': 'Sarah',
  'last_name': 'Matschulla',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Touristikfachfrau',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179628,
  'entity_type': 'politician',
  'label': 'Maria Kaufhold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179628',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-kaufhold',
  'first_name': 'Maria',
  'last_name': 'Kaufhold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179627,
  'entity_type': 'politician',
  'label': 'Christian Kornek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179627',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-kornek',
  'first_name': 'Christian',
  'last_name': 'Kornek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Bereichsleiter Vorstandsstab',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179626,
  'entity_type': 'politician',
  'label': 'Dorothea Lutze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179626',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dorothea-lutze',
  'first_name': 'Dorothea',
  'last_name': 'Lutze',
  'birth_name': 'Kirschnitzki',
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Meisterin im Handwerk',
  'residence': 'Bremen Horn - Lehe',
  'occupation': 'Selbstständige Meisterin im Friseurhandwerk',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179625,
  'entity_type': 'politician',
  'label': 'Jörg Müller-Arnecke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179625',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-mueller-arnecke',
  'first_name': 'Jörg',
  'last_name': 'Müller-Arnecke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Betriebswirt',
  'residence': 'Bremen',
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179624,
  'entity_type': 'politician',
  'label': 'Ann-Kathrin Mattern',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179624',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ann-kathrin-mattern',
  'first_name': 'Ann-Kathrin',
  'last_name': 'Mattern',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen (Schnoor)',
  'occupation': 'Juristische Mitarbeiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179622,
  'entity_type': 'politician',
  'label': 'Kay Middendorf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179622',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kay-middendorf',
  'first_name': 'Kay',
  'last_name': 'Middendorf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.Ökonom',
  'residence': 'Bremen',
  'occupation': 'Freiberufler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179621,
  'entity_type': 'politician',
  'label': 'Hetav Tek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179621',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hetav-tek',
  'first_name': 'Hetav',
  'last_name': 'Tek',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179620,
  'entity_type': 'politician',
  'label': 'Theresa Gröninger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179620',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/theresa-groeninger',
  'first_name': 'Theresa',
  'last_name': 'Gröninger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'Head of Sales & Marketing',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179619,
  'entity_type': 'politician',
  'label': 'Marvin Flatten',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179619',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marvin-flatten',
  'first_name': 'Marvin',
  'last_name': 'Flatten',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179604,
  'entity_type': 'politician',
  'label': 'Denise Bittner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179604',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/denise-bittner',
  'first_name': 'Denise',
  'last_name': 'Bittner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'MA Politikwissenschaft',
  'residence': 'Berlin',
  'occupation': 'Referatsleiterin Digitales',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179602,
  'entity_type': 'politician',
  'label': 'Christian Wendel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179602',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-wendel',
  'first_name': 'Christian',
  'last_name': 'Wendel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Landtagsabgeordneter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179562,
  'entity_type': 'politician',
  'label': 'Sandra Gockel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179562',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-gockel',
  'first_name': 'Sandra',
  'last_name': 'Gockel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehramtsstudium für Gymnasien (Kunst, Geographie und evangelische Religion)',
  'residence': None,
  'occupation': 'stellvertretende Schulleiterin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179561,
  'entity_type': 'politician',
  'label': 'Jonas Reiter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179561',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jonas-reiter',
  'first_name': 'Jonas',
  'last_name': 'Reiter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Science (BWL)',
  'residence': 'Nonnweiler-Primstal',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179387,
  'entity_type': 'politician',
  'label': 'Henrik Rump',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179387',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/henrik-rump',
  'first_name': 'Henrik',
  'last_name': 'Rump',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179386,
  'entity_type': 'politician',
  'label': 'Tristan Marienhagen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179386',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tristan-marienhagen',
  'first_name': 'Tristan',
  'last_name': 'Marienhagen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Northeim',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179334,
  'entity_type': 'politician',
  'label': 'Saskia Buschmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179334',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/saskia-buschmann',
  'first_name': 'Saskia',
  'last_name': 'Buschmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin (FH)/ Bachelor',
  'residence': 'Aurich',
  'occupation': 'Kriminaloberkommissarin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179333,
  'entity_type': 'politician',
  'label': 'Gerold Verlee',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179333',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerold-verlee',
  'first_name': 'Gerold',
  'last_name': 'Verlee',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Emden',
  'occupation': 'Entwicklungsingenieur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179332,
  'entity_type': 'politician',
  'label': 'Silke Kuhlemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179332',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-kuhlemann',
  'first_name': 'Silke',
  'last_name': 'Kuhlemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Westovereledingen',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179331,
  'entity_type': 'politician',
  'label': 'Hartmut Moorkamp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179331',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hartmut-moorkamp',
  'first_name': 'Hartmut',
  'last_name': 'Moorkamp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179330,
  'entity_type': 'politician',
  'label': 'Lara Evers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179330',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lara-evers',
  'first_name': 'Lara',
  'last_name': 'Evers',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Kauffrau',
  'residence': 'Geeste',
  'occupation': 'Head of Accounting',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179329,
  'entity_type': 'politician',
  'label': 'Christian Koltermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179329',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-koltermann',
  'first_name': 'Christian',
  'last_name': 'Koltermann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Osnabrück',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179328,
  'entity_type': 'politician',
  'label': 'Verena Kämmerling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179328',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/verena-kaemmerling',
  'first_name': 'Verena',
  'last_name': 'Kämmerling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179327,
  'entity_type': 'politician',
  'label': 'Jonas Pohlmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179327',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jonas-pohlmann',
  'first_name': 'Jonas',
  'last_name': 'Pohlmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M.Sc. Public Policy',
  'residence': 'Georgsmarienhütte',
  'occupation': 'Mobilitätsplaner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179326,
  'entity_type': 'politician',
  'label': 'Markus Kleinkauertz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179326',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-kleinkauertz',
  'first_name': 'Markus',
  'last_name': 'Kleinkauertz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Fachkaufmann für Handwerkswirtschaft',
  'residence': 'Bohmte',
  'occupation': 'Holzbearbeitungsmechaniker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179325,
  'entity_type': 'politician',
  'label': 'Thomas Uhlen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179325',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-uhlen',
  'first_name': 'Thomas',
  'last_name': 'Uhlen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Politikwissenschaftler',
  'residence': 'Bad Essen',
  'occupation': 'Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179324,
  'entity_type': 'politician',
  'label': 'Katharina Jensen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179324',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-jensen',
  'first_name': 'Katharina',
  'last_name': 'Jensen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Wangerland',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179323,
  'entity_type': 'politician',
  'label': 'Martin Ehlers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179323',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-ehlers',
  'first_name': 'Martin',
  'last_name': 'Ehlers',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Wilhelmshaven',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179322,
  'entity_type': 'politician',
  'label': 'André Hüttemeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179322',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-huettemeyer',
  'first_name': 'André',
  'last_name': 'Hüttemeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179321,
  'entity_type': 'politician',
  'label': 'Lukas Reinken',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179321',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-reinken',
  'first_name': 'Lukas',
  'last_name': 'Reinken',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt, Industriekaufmann',
  'residence': 'Friesoythe',
  'occupation': 'Betriebswirt Vertrieb',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179320,
  'entity_type': 'politician',
  'label': 'Jürgen Waßer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179320',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-wasser',
  'first_name': 'Jürgen',
  'last_name': 'Waßer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Einzelhandelskaufmann',
  'residence': 'Delmenhorst',
  'occupation': 'Selbstständiger Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179319,
  'entity_type': 'politician',
  'label': 'Nadja Lampe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179319',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nadja-lampe',
  'first_name': 'Nadja',
  'last_name': 'Lampe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179318,
  'entity_type': 'politician',
  'label': 'Lina Köhl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179318',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lina-koehl',
  'first_name': 'Lina',
  'last_name': 'Köhl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gesundheits-und Krankenpflegerin B.A.',
  'residence': 'Oldenburg',
  'occupation': 'Pflegedienstleitung',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179317,
  'entity_type': 'politician',
  'label': 'Hella Bachmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179317',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hella-bachmann',
  'first_name': 'Hella',
  'last_name': 'Bachmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Langwedel',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179316,
  'entity_type': 'politician',
  'label': 'Denis Ugurcu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179316',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/denis-ugurcu',
  'first_name': 'Denis',
  'last_name': 'Ugurcu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Schiffdorf',
  'occupation': 'Schulleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179315,
  'entity_type': 'politician',
  'label': 'Claus Seebeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179315',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claus-seebeck',
  'first_name': 'Claus',
  'last_name': 'Seebeck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Geestland',
  'occupation': 'Selbstständiger Gastronom',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179314,
  'entity_type': 'politician',
  'label': 'Melanie Reinecke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179314',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-reinecke',
  'first_name': 'Melanie',
  'last_name': 'Reinecke',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffrau',
  'residence': 'Stade',
  'occupation': 'Kauffrau',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179313,
  'entity_type': 'politician',
  'label': 'Birgit Butter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179313',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-butter',
  'first_name': 'Birgit',
  'last_name': 'Butter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': 'Buxtehude',
  'occupation': 'Mitglied des Niedersächsischen Landtages',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179312,
  'entity_type': 'politician',
  'label': 'Jan Christian Fritz Bauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179312',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-christian-fritz-bauer',
  'first_name': 'Jan Christian Fritz',
  'last_name': 'Bauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Buchholz in der Nordheide',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179311,
  'entity_type': 'politician',
  'label': 'Anna Bauseneick',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179311',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-bauseneick',
  'first_name': 'Anna',
  'last_name': 'Bauseneick',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'LL.B.',
  'residence': 'Lüneburg',
  'occupation': 'Angestellte',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179310,
  'entity_type': 'politician',
  'label': 'Jörn Schlumbohm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179310',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joern-schlumbohm',
  'first_name': 'Jörn',
  'last_name': 'Schlumbohm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Ehlbeck',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179309,
  'entity_type': 'politician',
  'label': 'Alexander Wille',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179309',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-wille',
  'first_name': 'Alexander',
  'last_name': 'Wille',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179308,
  'entity_type': 'politician',
  'label': 'Heinrich Kruse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179308',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-kruse',
  'first_name': 'Heinrich',
  'last_name': 'Kruse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatlich geprüfter Landwirtschaftsleiter',
  'residence': 'Stolzenau',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179307,
  'entity_type': 'politician',
  'label': 'Matthias Koch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179307',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-koch-0',
  'first_name': 'Matthias',
  'last_name': 'Koch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Emmerthal',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179306,
  'entity_type': 'politician',
  'label': 'Barbara Otte-Kinast',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179306',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-otte-kinast',
  'first_name': 'Barbara',
  'last_name': 'Otte-Kinast',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Niedersächsiche Ministerin für Ernährung, Landwirtschaft und Verbraucherschutz',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179305,
  'entity_type': 'politician',
  'label': 'Ann-Kristin Blome',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179305',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ann-kristin-blome',
  'first_name': 'Ann-Kristin',
  'last_name': 'Blome',
  'birth_name': 'Nikolay',
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'BA of Arts',
  'residence': None,
  'occupation': 'Technische Redakteurin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179304,
  'entity_type': 'politician',
  'label': 'Gerold Papsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179304',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerold-papsch',
  'first_name': 'Gerold',
  'last_name': 'Papsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Seelze',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179303,
  'entity_type': 'politician',
  'label': 'Alexandra Backhaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179303',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-backhaus',
  'first_name': 'Alexandra',
  'last_name': 'Backhaus',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M.A. Volkswirtschaftslehre',
  'residence': None,
  'occupation': 'Referentin für Wirtschaft, Arbeit, Verkehr und Digitalisierung; Häfen und Schifffahrt; Kommunikation und Medien',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179302,
  'entity_type': 'politician',
  'label': 'Heike Koehler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179302',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-koehler',
  'first_name': 'Heike',
  'last_name': 'Koehler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffrau',
  'residence': 'Lehrte',
  'occupation': 'Prokuristin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179301,
  'entity_type': 'politician',
  'label': 'Sepehr Sadar Amiri',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179301',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sepehr-sadar-amiri',
  'first_name': 'Sepehr',
  'last_name': 'Sadar Amiri',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': 'Ilten',
  'occupation': 'Leiter eines medizinischen Labors',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179300,
  'entity_type': 'politician',
  'label': 'Sabrina Kahmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179300',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabrina-kahmann',
  'first_name': 'Sabrina',
  'last_name': 'Kahmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': 'Hannover',
  'occupation': 'Referentin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179299,
  'entity_type': 'politician',
  'label': 'Martina Machulla',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179299',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-machulla',
  'first_name': 'Martina',
  'last_name': 'Machulla',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin, Fachanwältin für Familienrecht',
  'residence': 'Hannover',
  'occupation': 'Rechtsanwältin, Fachanwältin für Familienrecht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179298,
  'entity_type': 'politician',
  'label': 'Felix Semper',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179298',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-semper',
  'first_name': 'Felix',
  'last_name': 'Semper',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': '1. und 2. juristisches Staatsexamen',
  'residence': 'Hannover',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179297,
  'entity_type': 'politician',
  'label': 'Anke von Gadenstedt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179297',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anke-von-gadenstedt',
  'first_name': 'Anke',
  'last_name': 'von Gadenstedt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftspädagogin',
  'residence': 'Volkersheim',
  'occupation': 'Kaufmännische Geschäftsführung, Waldpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179296,
  'entity_type': 'politician',
  'label': 'Matthias König',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179296',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-koenig-0',
  'first_name': 'Matthias',
  'last_name': 'König',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Tischlermeister',
  'residence': 'Hildesheim',
  'occupation': 'Fraktionsgeschäftsführer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179295,
  'entity_type': 'politician',
  'label': 'Andreas Kroll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179295',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-kroll',
  'first_name': 'Andreas',
  'last_name': 'Kroll',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Facharzt',
  'residence': 'Einbeck',
  'occupation': 'Leitender Arzt und selbstständiger Arzt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 179294,
  'entity_type': 'politician',
  'label': 'Carina Hermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179294',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carina-hermann',
  'first_name': 'Carina',
  'last_name': 'Hermann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': 'Göttingen',
  'occupation': 'Büroleiterin des Fraktionsvorsitzenden der CDU-Landtagsfraktion Dirk Toepffer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179293,
  'entity_type': 'politician',
  'label': 'Christian Frölich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179293',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-froelich',
  'first_name': 'Christian',
  'last_name': 'Frölich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Wirtschaftsingeneur',
  'residence': 'Rosdorf',
  'occupation': 'Bauunternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179292,
  'entity_type': 'politician',
  'label': 'Stefanie Hertrampf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179292',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefanie-hertrampf',
  'first_name': 'Stefanie',
  'last_name': 'Hertrampf',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Automobilkauffrau',
  'residence': 'Bad Harzburg',
  'occupation': 'Beschäftigt im öffentlichen Dienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179291,
  'entity_type': 'politician',
  'label': 'Stefan Henkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179291',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-henkel',
  'first_name': 'Stefan',
  'last_name': 'Henkel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann; Marketing-Betriebswirt (VWA)',
  'residence': 'Hörden am Harz',
  'occupation': 'Niederlassungsleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179290,
  'entity_type': 'politician',
  'label': 'Banafsheh Nourkhiz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179290',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/banafsheh-nourkhiz',
  'first_name': 'Banafsheh',
  'last_name': 'Nourkhiz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politik- und Sozialwissenschaftlerin ',
  'residence': None,
  'occupation': 'Beauftragte für Gleichstellung, Familie und Integration der Stadt Peine',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179289,
  'entity_type': 'politician',
  'label': 'Cindy Lutz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179289',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cindy-lutz',
  'first_name': 'Cindy',
  'last_name': 'Lutz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtin VWA',
  'residence': 'Wolfsburg',
  'occupation': 'Wirtschaftsförderin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179288,
  'entity_type': 'politician',
  'label': 'Kerstin Meyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179288',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-meyer',
  'first_name': 'Kerstin',
  'last_name': 'Meyer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179287,
  'entity_type': 'politician',
  'label': 'Lena-Sophie Laue',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179287',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-sophie-laue',
  'first_name': 'Lena-Sophie',
  'last_name': 'Laue',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1997,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'B.A.',
  'residence': 'Ummern',
  'occupation': 'Verwaltungsbetriebswirtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179286,
  'entity_type': 'politician',
  'label': 'Sophie Ramdor',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179286',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sophie-ramdor',
  'first_name': 'Sophie',
  'last_name': 'Ramdor',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Education, Master of Arts',
  'residence': 'Braunschweig',
  'occupation': 'Lehrerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179140,
  'entity_type': 'politician',
  'label': 'Cornelia Schmachtenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-schmachtenberg',
  'first_name': 'Cornelia',
  'last_name': 'Schmachtenberg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': 'Nachgerückt für Dr. Otto Carstens',
  'education': 'Agrarwissenschaftlerin (M.Sc.)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 179138,
  'entity_type': 'politician',
  'label': 'Sebastian Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/179138',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-mueller',
  'first_name': 'Sebastian',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178988,
  'entity_type': 'politician',
  'label': 'Tanja Pavel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178988',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tanja-pavel',
  'first_name': 'Tanja',
  'last_name': 'Pavel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178971,
  'entity_type': 'politician',
  'label': 'Ute Mücklich-Heinrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178971',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ute-muecklich-heinrich',
  'first_name': 'Ute',
  'last_name': 'Mücklich-Heinrich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178947,
  'entity_type': 'politician',
  'label': 'Stephan Wolters',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178947',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-wolters',
  'first_name': 'Stephan',
  'last_name': 'Wolters',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bankbetriebswirt/Land- und Forstwirt',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178945,
  'entity_type': 'politician',
  'label': 'Thomas Welter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178945',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-welter',
  'first_name': 'Thomas',
  'last_name': 'Welter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Immobilienunternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178944,
  'entity_type': 'politician',
  'label': 'Nathanael Liminski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178944',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nathanael-liminski',
  'first_name': 'Nathanael',
  'last_name': 'Liminski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Minister für Bundes- und Europaangelegenheiten, Internationales sowie Medien',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178943,
  'entity_type': 'politician',
  'label': 'Sascha Lienesch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178943',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-lienesch',
  'first_name': 'Sascha',
  'last_name': 'Lienesch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Sankt Augustin',
  'occupation': 'Landtagsabgeordneter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178641,
  'entity_type': 'politician',
  'label': 'Marcal Zilian',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178641',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcal-zilian',
  'first_name': 'Marcal',
  'last_name': 'Zilian',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Holzwickede',
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178640,
  'entity_type': 'politician',
  'label': 'Matthias Eggers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178640',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-eggers',
  'first_name': 'Matthias',
  'last_name': 'Eggers',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Menden ',
  'occupation': 'Landtagsabgeordneter ',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178639,
  'entity_type': 'politician',
  'label': 'Frederik Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178639',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frederik-mueller',
  'first_name': 'Frederik',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Hamm',
  'occupation': 'Angestellter im Öffentlichen Dienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178638,
  'entity_type': 'politician',
  'label': 'Torsten Goetz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178638',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-goetz',
  'first_name': 'Torsten',
  'last_name': 'Goetz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Fachangestellter für Arbeitsförderung',
  'residence': 'Bönen',
  'occupation': 'Bereichsleiter bei der Agentur für Arbeit',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178637,
  'entity_type': 'politician',
  'label': 'Matthias Nienhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178637',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-nienhoff',
  'first_name': 'Matthias',
  'last_name': 'Nienhoff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Dortmund',
  'occupation': 'Sparkassenbetriebswirt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178636,
  'entity_type': 'politician',
  'label': 'Ina Brandes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178636',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ina-brandes',
  'first_name': 'Ina',
  'last_name': 'Brandes',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Ministerin für Kultur und Wissenschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178635,
  'entity_type': 'politician',
  'label': 'Alexander Omar Kalouti',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178635',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-omar-kalouti',
  'first_name': 'Alexander Omar',
  'last_name': 'Kalouti',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Presse- und Öffentlichkeitsarbeit',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178634,
  'entity_type': 'politician',
  'label': 'Andreas Flur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178634',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-flur',
  'first_name': 'Andreas',
  'last_name': 'Flur',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178633,
  'entity_type': 'politician',
  'label': 'Markus Mähler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-maehler',
  'first_name': 'Markus',
  'last_name': 'Mähler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178632,
  'entity_type': 'politician',
  'label': 'Stefan Klapperich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178632',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-klapperich',
  'first_name': 'Stefan',
  'last_name': 'Klapperich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178631,
  'entity_type': 'politician',
  'label': 'Maurice Schirmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178631',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maurice-schirmer',
  'first_name': 'Maurice',
  'last_name': 'Schirmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178630,
  'entity_type': 'politician',
  'label': 'Sarah Kramer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178630',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-kramer',
  'first_name': 'Sarah',
  'last_name': 'Kramer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Polizistin',
  'residence': 'Witten',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178629,
  'entity_type': 'politician',
  'label': 'Alexander Ebbert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178629',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-ebbert',
  'first_name': 'Alexander',
  'last_name': 'Ebbert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': None,
  'occupation': 'Industriefachwirt',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178628,
  'entity_type': 'politician',
  'label': 'Dennis Rehbein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178628',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-rehbein',
  'first_name': 'Dennis',
  'last_name': 'Rehbein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Business Administration',
  'residence': 'Hagen',
  'occupation': 'Geschäftsführender Gesellschafter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178627,
  'entity_type': 'politician',
  'label': 'Christiane Thiel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178627',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-thiel',
  'first_name': 'Christiane',
  'last_name': 'Thiel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Reiseleiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178626,
  'entity_type': 'politician',
  'label': 'Klaus Hansen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178626',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-hansen',
  'first_name': 'Klaus',
  'last_name': 'Hansen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Lage-Lippe',
  'occupation': 'Gärtnermeister / Tierparkleiter',
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178625,
  'entity_type': 'politician',
  'label': 'Mechthild Frentrup genannt Stolte',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178625',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mechthild-frentrup-genannt-stolte',
  'first_name': 'Mechthild',
  'last_name': 'Frentrup genannt Stolte',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Agraringenieurin (FH), promovierte Agrarökonomin',
  'residence': 'Steinhagen',
  'occupation': 'Unternehmensberaterin',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 178624,
  'entity_type': 'politician',
  'label': 'Tom Brüntrup',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178624',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tom-bruentrup',
  'first_name': 'Tom',
  'last_name': 'Brüntrup',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Finanzwirt',
  'residence': 'Bielefeld',
  'occupation': 'Betriebsprüfer',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178623,
  'entity_type': 'politician',
  'label': 'Philip Kleineberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178623',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philip-kleineberg',
  'first_name': 'Philip',
  'last_name': 'Kleineberg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt (B.A.)',
  'residence': 'Enger',
  'occupation': 'Vertriebsleiter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178622,
  'entity_type': 'politician',
  'label': 'Jonas Horstmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178622',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jonas-horstmann',
  'first_name': 'Jonas',
  'last_name': 'Horstmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Porta Westfalica',
  'occupation': 'kaufmännischer Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178621,
  'entity_type': 'politician',
  'label': 'Markus Höner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178621',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-hoener',
  'first_name': 'Markus',
  'last_name': 'Höner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Beckum',
  'occupation': 'Landwirt',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178619,
  'entity_type': 'politician',
  'label': 'Julian Allendorf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178619',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-allendorf',
  'first_name': 'Julian',
  'last_name': 'Allendorf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Nottuln/Münster',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 178618,
  'entity_type': 'politician',
  'label': 'Teresa Küppers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178618',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/teresa-kueppers',
  'first_name': 'Teresa',
  'last_name': 'Küppers',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Sozialpädagogin/ M.A. Sozialmanagement',
  'residence': 'Münster',
  'occupation': 'Traumapädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178617,
  'entity_type': 'politician',
  'label': 'Michael Schmitt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178617',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-schmitt',
  'first_name': 'Michael',
  'last_name': 'Schmitt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student der Rechtswissenschaften',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178616,
  'entity_type': 'politician',
  'label': 'Markus Karl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178616',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-karl',
  'first_name': 'Markus',
  'last_name': 'Karl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Bankbetriebswirt (Bankakademie) und Betriebswirt (VWA)',
  'residence': 'Gelsenkirchen',
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178615,
  'entity_type': 'politician',
  'label': 'Patrick-Benjamin Bök',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178615',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-benjamin-boek',
  'first_name': 'Patrick-Benjamin',
  'last_name': 'Bök',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Informatiker',
  'residence': 'Datteln',
  'occupation': 'Professor',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178614,
  'entity_type': 'politician',
  'label': 'Manfred Langenkamp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178614',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-langenkamp',
  'first_name': 'Manfred',
  'last_name': 'Langenkamp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Marl',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178613,
  'entity_type': 'politician',
  'label': 'Marita Bergmaier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178613',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marita-bergmaier',
  'first_name': 'Marita',
  'last_name': 'Bergmaier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin',
  'residence': 'Recklinghausen ',
  'occupation': 'Diplom-Verwaltungswirtin ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178612,
  'entity_type': 'politician',
  'label': 'Eva Großimlinghaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178612',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eva-grossimlinghaus',
  'first_name': 'Eva',
  'last_name': 'Großimlinghaus',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Steuerberaterin',
  'residence': 'Essen',
  'occupation': 'selbständige Steuerberaterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178611,
  'entity_type': 'politician',
  'label': 'Thomas Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178611',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-ziegler',
  'first_name': 'Thomas',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Chemikant/BA-Politikwissenschaften',
  'residence': 'Essen',
  'occupation': 'Gewerkschaftssekretär',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178610,
  'entity_type': 'politician',
  'label': 'Jessica Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178610',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jessica-fuchs',
  'first_name': 'Jessica',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Essen',
  'occupation': 'Steuerjuristin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178609,
  'entity_type': 'politician',
  'label': 'Deniz Güner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178609',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/deniz-guener',
  'first_name': 'Deniz',
  'last_name': 'Güner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirt, Diplom-Kaufmann',
  'residence': 'Duisburg',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178608,
  'entity_type': 'politician',
  'label': 'Stefan Dase',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178608',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-dase',
  'first_name': 'Stefan',
  'last_name': 'Dase',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178607,
  'entity_type': 'politician',
  'label': 'Julia Zupancic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178607',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-zupancic',
  'first_name': 'Julia',
  'last_name': 'Zupancic',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Ökonomin',
  'residence': 'Moers',
  'occupation': 'Selbständig in der Strategie- und Markteingberatung',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178606,
  'entity_type': 'politician',
  'label': 'Sascha van Beek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178606',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-van-beek',
  'first_name': 'Sascha',
  'last_name': 'van Beek',
  'birth_name': 'Laackmann',
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Alpen-Veen',
  'occupation': 'Gesundheits- und Krankenpfleger, Regionalleiter Medizincontrolling',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178605,
  'entity_type': 'politician',
  'label': 'Guido Görtz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178605',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guido-goertz',
  'first_name': 'Guido',
  'last_name': 'Görtz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Willich',
  'occupation': 'Stahlkaufmann',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178604,
  'entity_type': 'politician',
  'label': 'Vanessa Odermatt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178604',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vanessa-odermatt',
  'first_name': 'Vanessa',
  'last_name': 'Odermatt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Steuerrecht (M.A.)',
  'residence': None,
  'occupation': 'Diplom Finanzwirtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178603,
  'entity_type': 'politician',
  'label': 'Peter Blumenrath',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178603',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-blumenrath',
  'first_name': 'Peter',
  'last_name': 'Blumenrath',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Versorgungsingenieur',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178602,
  'entity_type': 'politician',
  'label': 'Sebastian Haug',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178602',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-haug',
  'first_name': 'Sebastian',
  'last_name': 'Haug',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Solingen',
  'occupation': 'Fachanwalt für Miet- und Wohnungseigentumsrecht',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178601,
  'entity_type': 'politician',
  'label': 'Anja Vesper-Pottkamp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178601',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-vesper-pottkamp',
  'first_name': 'Anja',
  'last_name': 'Vesper-Pottkamp',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium mit Abschluss M.A.',
  'residence': 'Gevelsberg',
  'occupation': 'Wissenschaftliche Mitarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178600,
  'entity_type': 'politician',
  'label': 'Jonathan Grunwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178600',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jonathan-grunwald',
  'first_name': 'Jonathan',
  'last_name': 'Grunwald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': None,
  'occupation': 'Leiter des Referats „Gesellschaftliche und ökonomische Grundsatzfragen“ in der Staatskanzlei des Landes Nordrhein-Westfalen',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178599,
  'entity_type': 'politician',
  'label': 'Christian Berger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178599',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-berger',
  'first_name': 'Christian',
  'last_name': 'Berger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ausbildung zum Industriekaufmann',
  'residence': 'Wipperfürth',
  'occupation': 'Vertriebsleiter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178598,
  'entity_type': 'politician',
  'label': 'Martin Lucke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178598',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-lucke-0',
  'first_name': 'Martin',
  'last_name': 'Lucke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Bergisch Gladbach',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178597,
  'entity_type': 'politician',
  'label': 'Dominik Kaven',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178597',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-kaven',
  'first_name': 'Dominik',
  'last_name': 'Kaven',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Tourismuskaufmann',
  'residence': 'Köln',
  'occupation': 'Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178596,
  'entity_type': 'politician',
  'label': 'Thomas Okos',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178596',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-okos',
  'first_name': 'Thomas',
  'last_name': 'Okos',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M. Sc. Business Administration',
  'residence': None,
  'occupation': 'Consultant',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178595,
  'entity_type': 'politician',
  'label': 'Daniel Scheen-Pauls',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178595',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-scheen-pauls',
  'first_name': 'Daniel',
  'last_name': 'Scheen-Pauls',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Projektleiter für Digitalisierungsprojekte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178594,
  'entity_type': 'politician',
  'label': 'Annika Fohn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178594',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annika-fohn',
  'first_name': 'Annika',
  'last_name': 'Fohn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sozialwissenschaftlerin',
  'residence': 'Aachen',
  'occupation': 'Doktorandin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178593,
  'entity_type': 'politician',
  'label': 'Holger Brantin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178593',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-brantin',
  'first_name': 'Holger',
  'last_name': 'Brantin',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Aachen',
  'occupation': 'Vorsitzender Richter am Landgericht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178188,
  'entity_type': 'politician',
  'label': 'Hermann Junghans',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178188',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hermann-junghans',
  'first_name': 'Hermann',
  'last_name': 'Junghans',
  'birth_name': 'Junghans',
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt (Fachanwalt Verkehrsrecht), Mediator',
  'residence': 'Lübeck',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178187,
  'entity_type': 'politician',
  'label': 'Patrick Pender',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178187',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-pender',
  'first_name': 'Patrick',
  'last_name': 'Pender',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt (B.Sc)',
  'residence': 'Norderstedt, Schleswig-Holstein',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178186,
  'entity_type': 'politician',
  'label': 'Sönke Siebke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178186',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/soenke-siebke',
  'first_name': 'Sönke',
  'last_name': 'Siebke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'staatl.geprüfter Landwirt',
  'residence': 'Schmalensee',
  'occupation': 'Landwirt ,Bürgermeister',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178185,
  'entity_type': 'politician',
  'label': 'Martin Balasus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178185',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-balasus',
  'first_name': 'Martin',
  'last_name': 'Balasus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': 'Moorrege',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178184,
  'entity_type': 'politician',
  'label': 'Otto Carstens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178184',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/otto-carstens',
  'first_name': 'Otto',
  'last_name': 'Carstens',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist ',
  'residence': 'Itzehoe ',
  'occupation': 'Dezernent des Kreises Steinburg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 178183,
  'entity_type': 'politician',
  'label': 'Wiebke Zweig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178183',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wiebke-zweig',
  'first_name': 'Wiebke',
  'last_name': 'Zweig',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M.A. Politische Wissenschaften',
  'residence': 'Bad Schwartau',
  'occupation': 'Online Marketing Managerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178182,
  'entity_type': 'politician',
  'label': 'Hauke Hansen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178182',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hauke-hansen',
  'first_name': 'Hauke',
  'last_name': 'Hansen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Finanzwirt (FH)',
  'residence': 'Padenstedt',
  'occupation': 'Finanzbeamter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178181,
  'entity_type': 'politician',
  'label': 'Rixa Kleinschmit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178181',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rixa-kleinschmit',
  'first_name': 'Rixa',
  'last_name': 'Kleinschmit',
  'birth_name': 'Rahlf',
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Agrar-Ingenieurin (FH)',
  'residence': 'Westerrönfeld',
  'occupation': 'Geschäftsführerin Kreisbauernverband Rendsburg-Eckernförde',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178180,
  'entity_type': 'politician',
  'label': 'Uta Wentzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178180',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uta-wentzel',
  'first_name': 'Uta',
  'last_name': 'Wentzel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Flensburg',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178179,
  'entity_type': 'politician',
  'label': 'Michel Deckmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178179',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michel-deckmann',
  'first_name': 'Michel',
  'last_name': 'Deckmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann und Betriebswirt',
  'residence': 'Husum',
  'occupation': 'Angestellter in der Steuerberatung',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178178,
  'entity_type': 'politician',
  'label': 'Manfred Uekermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178178',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-uekermann',
  'first_name': 'Manfred',
  'last_name': 'Uekermann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178159,
  'entity_type': 'politician',
  'label': 'Tom Unger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178159',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tom-unger',
  'first_name': 'Tom',
  'last_name': 'Unger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178149,
  'entity_type': 'politician',
  'label': 'Jan-Wilhelm Pohlmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178149',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-wilhelm-pohlmann',
  'first_name': 'Jan-Wilhelm',
  'last_name': 'Pohlmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 178147,
  'entity_type': 'politician',
  'label': 'Karolin Braunsberger-Reinhold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178147',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karolin-braunsberger-reinhold',
  'first_name': 'Karolin',
  'last_name': 'Braunsberger-Reinhold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q108904462',
  'field_title': None},
 {'id': 178137,
  'entity_type': 'politician',
  'label': 'Michael Adam',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/178137',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-adam-1',
  'first_name': 'Michael',
  'last_name': 'Adam',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 177578,
  'entity_type': 'politician',
  'label': 'Christina Stumpp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/177578',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christina-stumpp',
  'first_name': 'Christina',
  'last_name': 'Stumpp',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Steuerrechtlerin LL.B., Verwaltungswirtin',
  'residence': 'Waiblingen',
  'occupation': 'Persönliche Referentin des Ministers für Ernährung, Ländlichen Raum und Verbraucherschutz in Baden-Württemberg',
  'statistic_questions': 15,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': '2555',
  'qid_wikidata': 'Q108702403',
  'field_title': None},
 {'id': 177308,
  'entity_type': 'politician',
  'label': 'Peer Mock-Stümer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/177308',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peer-mock-stuemer',
  'first_name': 'Peer',
  'last_name': 'Mock-Stümer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl-Kaufmann',
  'residence': 'Berlin',
  'occupation': 'MdA, Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 177307,
  'entity_type': 'politician',
  'label': 'Christian Wohlrabe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/177307',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-wohlrabe',
  'first_name': 'Christian',
  'last_name': 'Wohlrabe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Politikwissenschaften',
  'residence': 'Berlin',
  'occupation': 'Senior Manager Unternehmenskommunikation',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 177264,
  'entity_type': 'politician',
  'label': 'Olga Gauks',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/177264',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olga-gauks',
  'first_name': 'Olga',
  'last_name': 'Gauks',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrerin',
  'residence': 'Berlin',
  'occupation': 'MdA, Lehrerin',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176942,
  'entity_type': 'politician',
  'label': 'Björn Bromberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176942',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-bromberger',
  'first_name': 'Björn',
  'last_name': 'Bromberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': 'Neubrandenburg',
  'occupation': 'Lehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176941,
  'entity_type': 'politician',
  'label': 'Stefan Weigler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176941',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-weigler',
  'first_name': 'Stefan',
  'last_name': 'Weigler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Wolgast',
  'occupation': 'Bürgermeister der Stadt Wolgast',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176940,
  'entity_type': 'politician',
  'label': 'Jane Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176940',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jane-weber',
  'first_name': 'Jane',
  'last_name': 'Weber',
  'birth_name': 'Weber',
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'FA für Gartenbau / Dipl. Gartenbauingenieurin (FH) / Diplomökonomin / Diplomumweltwissenschaftlerin - Schwerpunkt Stadt- und Regionalplanung',
  'residence': 'Güstrow',
  'occupation': 'Amtsleiterin des Stadtentwicklungsamtes und stellv. Bürgermeisterin (1. Stadträtin) der Stadt Güstrow',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176939,
  'entity_type': 'politician',
  'label': 'Dietmar Speßhardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176939',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietmar-spesshardt',
  'first_name': 'Dietmar',
  'last_name': 'Speßhardt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Augenoptikermeister',
  'residence': 'Hagenow Heide',
  'occupation': 'selbstständiger Augenoptikermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176938,
  'entity_type': 'politician',
  'label': 'Axel Schulz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176938',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-schulz',
  'first_name': 'Axel',
  'last_name': 'Schulz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Schwerin',
  'occupation': 'Angestellter Unternehmenskommunikation',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176937,
  'entity_type': 'politician',
  'label': 'Ija Schramko',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176937',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ija-schramko',
  'first_name': 'Ija',
  'last_name': 'Schramko',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ärztin',
  'residence': 'Elmenhorst',
  'occupation': 'Ärztin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176936,
  'entity_type': 'politician',
  'label': 'Michael Sack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176936',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-sack',
  'first_name': 'Michael',
  'last_name': 'Sack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Bauingenieur',
  'residence': 'Loitz',
  'occupation': 'Landrat des Landkreises Vorpommern-Greifswald',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176935,
  'entity_type': 'politician',
  'label': 'Andy Redner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176935',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andy-redner',
  'first_name': 'Andy',
  'last_name': 'Redner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Dümmer',
  'occupation': 'Geschäftsführender Gesellschafter der Schaalsee Fitness GmbH',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176934,
  'entity_type': 'politician',
  'label': 'Julia Präkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176934',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-praekel',
  'first_name': 'Julia',
  'last_name': 'Präkel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Betriebswirtin für Tourismuswirtschaft (BA)',
  'residence': 'Putbus',
  'occupation': 'Leiterin des Wahlkreisbüros von Burkhard Lenz, MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176933,
  'entity_type': 'politician',
  'label': 'Susanna Masur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176933',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanna-masur',
  'first_name': 'Susanna',
  'last_name': 'Masur',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Agraringenieurin / Fachkraft Umweltschutz',
  'residence': 'Negast',
  'occupation': 'Verwaltungsangestellte im Bauamt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176932,
  'entity_type': 'politician',
  'label': 'Jens Lindloff-Rühse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176932',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-lindloff-ruehse',
  'first_name': 'Jens',
  'last_name': 'Lindloff-Rühse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Maschinenbauingenieur',
  'residence': 'Rostock',
  'occupation': 'Fertigungsvorbereiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176931,
  'entity_type': 'politician',
  'label': 'Katy Hoffmeister',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176931',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katy-hoffmeister',
  'first_name': 'Katy',
  'last_name': 'Hoffmeister',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': 'Bad-Doberan',
  'occupation': 'Justizministerin Land Mecklenburg-Vorpommern',
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q27661460',
  'field_title': None},
 {'id': 176930,
  'entity_type': 'politician',
  'label': 'Joachim Hebert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176930',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-hebert',
  'first_name': 'Joachim',
  'last_name': 'Hebert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Zahntechnikermeister',
  'residence': 'Crivitz',
  'occupation': 'geschäftsführender Gesellschafter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176929,
  'entity_type': 'politician',
  'label': 'Torsten Hanke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176929',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-hanke',
  'first_name': 'Torsten',
  'last_name': 'Hanke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplomingenieur Maschinenbau',
  'residence': 'Neubrandenbur',
  'occupation': 'Abteilungsleiter Controlling',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176928,
  'entity_type': 'politician',
  'label': 'Veikko Hackendahl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176928',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/veikko-hackendahl',
  'first_name': 'Veikko',
  'last_name': 'Hackendahl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Kröpelin',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176927,
  'entity_type': 'politician',
  'label': 'Christian Geier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176927',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-geier',
  'first_name': 'Christian',
  'last_name': 'Geier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt (VWA), B. A.',
  'residence': 'Ludwigslust',
  'occupation': 'Immobilienmakler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176926,
  'entity_type': 'politician',
  'label': 'Kathleen Fleck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176926',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kathleen-fleck',
  'first_name': 'Kathleen',
  'last_name': 'Fleck',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungsbetriebswirtin VWA',
  'residence': 'Seebad Ueckermünde',
  'occupation': 'Bauingenieurin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176925,
  'entity_type': 'politician',
  'label': 'Tom Brüggert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176925',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tom-brueggert',
  'first_name': 'Tom',
  'last_name': 'Brüggert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor of Laws',
  'residence': 'Wismar',
  'occupation': 'Fachbereichsleiter berufliche Bildung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176924,
  'entity_type': 'politician',
  'label': 'Andrea Apmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176924',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-apmann',
  'first_name': 'Andrea',
  'last_name': 'Apmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Wirtschaftsökonomin',
  'residence': 'Neustrelitz',
  'occupation': 'Mitarbeiterin im Wahlkreisbüro Neustrelitz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176895,
  'entity_type': 'politician',
  'label': 'Susanne Wetterich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176895',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-wetterich',
  'first_name': 'Susanne',
  'last_name': 'Wetterich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Journalistin',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2310',
  'qid_wikidata': 'Q55973910',
  'field_title': None},
 {'id': 176486,
  'entity_type': 'politician',
  'label': 'Frank Balzer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176486',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-balzer',
  'first_name': 'Frank',
  'last_name': 'Balzer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': 'Reinickendorf',
  'occupation': 'MdA / Bezirksbürgermeister a. D.',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q1442900',
  'field_title': None},
 {'id': 176485,
  'entity_type': 'politician',
  'label': 'Björn Wohlert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176485',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-wohlert',
  'first_name': 'Björn',
  'last_name': 'Wohlert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Politik- und Verwaltungswissenschaft',
  'residence': 'Berlin-Wittenau',
  'occupation': 'Referent für Online-Kommunikation',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176484,
  'entity_type': 'politician',
  'label': 'Lilia Usik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176484',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lilia-usik',
  'first_name': 'Lilia',
  'last_name': 'Usik',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Deutsche Philologie und Deutsch als Fremdsprache',
  'residence': None,
  'occupation': 'Mitglied des Abgeordnetenhauses Berlin für die CDU für Karlshorst, Friedrichsfelde Süd und Rummelsburger Bucht',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176483,
  'entity_type': 'politician',
  'label': 'Sarah Röhr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176483',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-roehr',
  'first_name': 'Sarah',
  'last_name': 'Röhr',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Geschichtswissenschaften und Judaistik',
  'residence': None,
  'occupation': 'Referentin für Digitalstrategien',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176482,
  'entity_type': 'politician',
  'label': 'Michael Moll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176482',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-moll',
  'first_name': 'Michael',
  'last_name': 'Moll',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Beamter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176481,
  'entity_type': 'politician',
  'label': 'Dennis Haustein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176481',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-haustein',
  'first_name': 'Dennis',
  'last_name': 'Haustein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Personaldienstleistungskaufmann',
  'residence': 'Berlin-Lichtenberg',
  'occupation': 'MdA, Niederlassungsleiter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176480,
  'entity_type': 'politician',
  'label': 'Katharina Günther-Wünsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176480',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-guenther-wuensch',
  'first_name': 'Katharina',
  'last_name': 'Günther-Wünsch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studiendirektorin',
  'residence': 'Dresden',
  'occupation': 'MdA, Senatorin für Bildung, Jugend und Familie',
  'statistic_questions': 10,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176478,
  'entity_type': 'politician',
  'label': 'Walter Gauks',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176478',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-gauks',
  'first_name': 'Walter',
  'last_name': 'Gauks',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176477,
  'entity_type': 'politician',
  'label': 'Lisa Knack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176477',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lisa-knack',
  'first_name': 'Lisa',
  'last_name': 'Knack',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sozialarbeiterin',
  'residence': 'Berlin',
  'occupation': 'MdA, Sozialarbeiterin in einer Jugendhilfeeinrichtung',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176476,
  'entity_type': 'politician',
  'label': 'Olaf Schenk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176476',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-schenk',
  'first_name': 'Olaf',
  'last_name': 'Schenk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kfz Meister',
  'residence': 'Berlin-Rudow',
  'occupation': 'MdA, Angestellter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176475,
  'entity_type': 'politician',
  'label': 'Gabriele Köstner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176475',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-koestner',
  'first_name': 'Gabriele',
  'last_name': 'Köstner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Betriebswirtin (FH)',
  'residence': 'Berlin-Britz',
  'occupation': 'Unternehmerin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176474,
  'entity_type': 'politician',
  'label': 'Nimet Avci',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176474',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nimet-avci',
  'first_name': 'Nimet',
  'last_name': 'Avci',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': '1. juristisches Examen',
  'residence': 'Berlin-Neukölln',
  'occupation': 'Rechtsreferendarin beim Kammergericht zu Berlin',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176473,
  'entity_type': 'politician',
  'label': 'Sabine Güldner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176473',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-gueldner',
  'first_name': 'Sabine',
  'last_name': 'Güldner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin-Neukölln',
  'occupation': 'Krankenschwester',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176472,
  'entity_type': 'politician',
  'label': 'Frank Luhmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176472',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-luhmann',
  'first_name': 'Frank',
  'last_name': 'Luhmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdA',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176471,
  'entity_type': 'politician',
  'label': 'Inga Frohmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176471',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/inga-frohmann',
  'first_name': 'Inga',
  'last_name': 'Frohmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin, Historikerin, Bankkauffrau',
  'residence': 'Berlin-Friedenau',
  'occupation': 'Büroleiterin/ Pol. Referentin, Deutscher Bundestag',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176470,
  'entity_type': 'politician',
  'label': 'Peter Mair',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176470',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-mair',
  'first_name': 'Peter',
  'last_name': 'Mair',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin-Schöneberg',
  'occupation': 'Referatsleiter bei einem Automobilverband',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176469,
  'entity_type': 'politician',
  'label': 'Katharina Senge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176469',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-senge',
  'first_name': 'Katharina',
  'last_name': 'Senge',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magistra Artium',
  'residence': 'Berlin-Schöneberg',
  'occupation': 'MdA, Referentin im Deutschen Bundestag',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176468,
  'entity_type': 'politician',
  'label': 'Tom Cywinski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176468',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tom-cywinski',
  'first_name': 'Tom',
  'last_name': 'Cywinski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdA',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176467,
  'entity_type': 'politician',
  'label': 'Claudia Wein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176467',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-wein',
  'first_name': 'Claudia',
  'last_name': 'Wein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ärztin',
  'residence': 'Berlin',
  'occupation': 'MdA, Stabsstelle in Krankenhaus-Geschäftsführung',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 176466,
  'entity_type': 'politician',
  'label': 'Kerstin Brauner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176466',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-brauner',
  'first_name': 'Kerstin',
  'last_name': 'Brauner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': 'Berlin',
  'occupation': 'MdA, Juristische Referentin ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176465,
  'entity_type': 'politician',
  'label': 'Sandra Khalatbari',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176465',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-khalatbari',
  'first_name': 'Sandra',
  'last_name': 'Khalatbari',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176464,
  'entity_type': 'politician',
  'label': 'Aldona Niemczyk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176464',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/aldona-niemczyk',
  'first_name': 'Aldona',
  'last_name': 'Niemczyk',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Sozialpädagogik und Soziale Arbeit',
  'residence': 'Berlin-Charlottenburg',
  'occupation': 'MdA, Gruppenleitung Sozialdienst',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176463,
  'entity_type': 'politician',
  'label': 'Ariturel Hack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176463',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ariturel-hack',
  'first_name': 'Ariturel',
  'last_name': 'Hack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176462,
  'entity_type': 'politician',
  'label': 'Stefan Häntsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176462',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-haentsch',
  'first_name': 'Stefan',
  'last_name': 'Häntsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Rechtswissenschaften',
  'residence': None,
  'occupation': 'MdA, Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176461,
  'entity_type': 'politician',
  'label': 'Mario Röllig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176461',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mario-roellig',
  'first_name': 'Mario',
  'last_name': 'Röllig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmännische Ausbildung - Restaurantfachmann',
  'residence': 'Berlin',
  'occupation': 'Referent für politische Bildung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176460,
  'entity_type': 'politician',
  'label': 'Antje Tölle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176460',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antje-toelle',
  'first_name': 'Antje',
  'last_name': 'Tölle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Professorin an der Hochschule für Wirtschaft und Recht (HWR)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176459,
  'entity_type': 'politician',
  'label': 'Nils Pargmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176459',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nils-pargmann',
  'first_name': 'Nils',
  'last_name': 'Pargmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 2001,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rettungssanitäter',
  'residence': 'Berlin',
  'occupation': 'Student der Medizin / Rettungssanitäter',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176458,
  'entity_type': 'politician',
  'label': 'Norman Gutschow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176458',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norman-gutschow',
  'first_name': 'Norman',
  'last_name': 'Gutschow',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin',
  'occupation': 'Wissenschaftlicher Mitarbeiter',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176457,
  'entity_type': 'politician',
  'label': 'Lars Bocian',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176457',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-bocian',
  'first_name': 'Lars',
  'last_name': 'Bocian',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Tischler',
  'residence': 'Berlin-Pankow',
  'occupation': 'MdA, Selbstständiger Handwerker',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176456,
  'entity_type': 'politician',
  'label': 'Max Kindler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176456',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/max-kindler',
  'first_name': 'Max',
  'last_name': 'Kindler',
  'birth_name': 'Kindler',
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin',
  'occupation': 'Kriminalkommissar',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176455,
  'entity_type': 'politician',
  'label': 'Ilona Barrie',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176455',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ilona-barrie',
  'first_name': 'Ilona',
  'last_name': 'Barrie',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Angestellte im öffentlichen Dienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176454,
  'entity_type': 'politician',
  'label': 'Marita Fabeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176454',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marita-fabeck',
  'first_name': 'Marita',
  'last_name': 'Fabeck',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Kulturwissenschaften',
  'residence': None,
  'occupation': 'Fraktionsreferentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176453,
  'entity_type': 'politician',
  'label': 'Daniela Fritz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176453',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniela-fritz',
  'first_name': 'Daniela',
  'last_name': 'Fritz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176452,
  'entity_type': 'politician',
  'label': 'Cem Erkisi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176452',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cem-erkisi',
  'first_name': 'Cem',
  'last_name': 'Erkisi',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatlich anerkannter Erzieher',
  'residence': 'Berlin',
  'occupation': 'Erzieher',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176451,
  'entity_type': 'politician',
  'label': 'Christiane Holm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176451',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-holm',
  'first_name': 'Christiane',
  'last_name': 'Holm',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ausbildung Einzelhandelskauffrau',
  'residence': 'Berlin-Mitte',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176450,
  'entity_type': 'politician',
  'label': 'Lucas Schaal',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176450',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lucas-schaal',
  'first_name': 'Lucas',
  'last_name': 'Schaal',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volkswirt und Jurist',
  'residence': None,
  'occupation': 'MdA, Rechtsreferendar',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 176449,
  'entity_type': 'politician',
  'label': 'Peter Pielen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/176449',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-pielen',
  'first_name': 'Peter',
  'last_name': 'Pielen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175895,
  'entity_type': 'politician',
  'label': 'Johannes Wiegelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175895',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-wiegelmann',
  'first_name': 'Johannes',
  'last_name': 'Wiegelmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Bad Soden-Salmünster',
  'occupation': 'Kommunalpolitiker im MKK & BSS',
  'statistic_questions': 5,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175894,
  'entity_type': 'politician',
  'label': 'Florian Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175894',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-mueller-0',
  'first_name': 'Florian',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor of Arts Arbeitsmarktmanagement, Master of Arts Personalmanagement',
  'residence': 'Drolshagen',
  'occupation': 'Referent für Strategie und Regulierung',
  'statistic_questions': 11,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': '2478',
  'qid_wikidata': 'Q108757683',
  'field_title': None},
 {'id': 175893,
  'entity_type': 'politician',
  'label': 'Angelika Westerwelle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175893',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/angelika-westerwelle',
  'first_name': 'Angelika',
  'last_name': 'Westerwelle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Kfm., Dr. rer.  pol., MPhil (Cantab), MPA (Harvard) ',
  'residence': 'Bielefeld',
  'occupation': 'Unternehmerin',
  'statistic_questions': 13,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175892,
  'entity_type': 'politician',
  'label': 'Yannick Bury',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175892',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yannick-bury',
  'first_name': 'Yannick',
  'last_name': 'Bury',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Science VWL',
  'residence': 'Malterdingen',
  'occupation': 'Volkswirt',
  'statistic_questions': 9,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': '2348',
  'qid_wikidata': 'Q108753543',
  'field_title': None},
 {'id': 175891,
  'entity_type': 'politician',
  'label': 'Wilhelm Gebhard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175891',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilhelm-gebhard',
  'first_name': 'Wilhelm',
  'last_name': 'Gebhard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bürgermeister',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175890,
  'entity_type': 'politician',
  'label': 'Wilfried Nünthel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175890',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilfried-nuenthel',
  'first_name': 'Wilfried',
  'last_name': 'Nünthel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin-Lichtenberg',
  'occupation': None,
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175889,
  'entity_type': 'politician',
  'label': 'Wiebke Winter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175889',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wiebke-winter',
  'first_name': 'Wiebke',
  'last_name': 'Winter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studentin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175888,
  'entity_type': 'politician',
  'label': 'Volker Mayer-Lay',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175888',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-mayer-lay',
  'first_name': 'Volker',
  'last_name': 'Mayer-Lay',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Überlingen',
  'occupation': 'Rechtsanwalt & Mediator',
  'statistic_questions': 8,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': '2462',
  'qid_wikidata': 'Q108757194',
  'field_title': None},
 {'id': 175887,
  'entity_type': 'politician',
  'label': 'Thomas Peters',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175887',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-peters',
  'first_name': 'Thomas',
  'last_name': 'Peters',
  'birth_name': 'Thomas Peters',
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Wentorf bei Hamburg',
  'occupation': 'Geschäftsführer eines mittelständischen Unternehmen ',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175885,
  'entity_type': 'politician',
  'label': 'Stephan Bunge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175885',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-bunge',
  'first_name': 'Stephan',
  'last_name': 'Bunge',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Doktor der Ingenieurwissenschaften (Dr. -Ing.)',
  'residence': 'Wulkenzin',
  'occupation': 'Unternehmensberatung',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175883,
  'entity_type': 'politician',
  'label': 'Sandra von Möller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175883',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-von-moeller',
  'first_name': 'Sandra',
  'last_name': 'von Möller',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175882,
  'entity_type': 'politician',
  'label': 'Sabine Buder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175882',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-buder',
  'first_name': 'Sabine',
  'last_name': 'Buder',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Tierärztin',
  'statistic_questions': 8,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175881,
  'entity_type': 'politician',
  'label': 'Roland Hörner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175881',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-hoerner',
  'first_name': 'Roland',
  'last_name': 'Hörner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Mannheim',
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175879,
  'entity_type': 'politician',
  'label': 'Philipp Albrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175879',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-albrecht',
  'first_name': 'Philipp',
  'last_name': 'Albrecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volkswirt (Master)',
  'residence': 'Ganderkesee',
  'occupation': 'Volkswirt (Steuerbüro)',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175877,
  'entity_type': 'politician',
  'label': 'Ottilie Klein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175877',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ottilie-klein',
  'first_name': 'Ottilie',
  'last_name': 'Klein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin',
  'occupation': 'Abteilungsdirektorin',
  'statistic_questions': 18,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': '2419',
  'qid_wikidata': 'Q108711880',
  'field_title': 'Dr.'},
 {'id': 175876,
  'entity_type': 'politician',
  'label': 'Nicolas Zippelius',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175876',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicolas-zippelius',
  'first_name': 'Nicolas',
  'last_name': 'Zippelius',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor Politik- und Rechtswissenschaften',
  'residence': 'Weingarten',
  'occupation': 'Bundestagsabgeordneter',
  'statistic_questions': 19,
  'statistic_questions_answered': 18,
  'ext_id_bundestagsverwaltung': '2586',
  'qid_wikidata': 'Q108760623',
  'field_title': None},
 {'id': 175875,
  'entity_type': 'politician',
  'label': 'Michael Aufenanger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175875',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-aufenanger',
  'first_name': 'Michael',
  'last_name': 'Aufenanger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verw. (FH), Master of Public Adminstration',
  'residence': 'Ahnatal',
  'occupation': 'Kreisvorsitzender, Beisitzer im Landesvorstand, Geschäftsführer und Büroleiter',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175874,
  'entity_type': 'politician',
  'label': 'Michael Depenbrock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175874',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-depenbrock',
  'first_name': 'Michael',
  'last_name': 'Depenbrock',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Steuerberater',
  'residence': 'Dortmund',
  'occupation': 'Steuerberater, Bezirksbürgermeister (Ehrenamt)',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175873,
  'entity_type': 'politician',
  'label': 'Maximilian Mörseburg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175873',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-moerseburg',
  'first_name': 'Maximilian',
  'last_name': 'Mörseburg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Stuttgart',
  'occupation': 'MdB',
  'statistic_questions': 14,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2474',
  'qid_wikidata': 'Q108757485',
  'field_title': None},
 {'id': 175871,
  'entity_type': 'politician',
  'label': 'Martin Plum',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175871',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-plum',
  'first_name': 'Martin',
  'last_name': 'Plum',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Viersen',
  'occupation': 'Richter',
  'statistic_questions': 13,
  'statistic_questions_answered': 13,
  'ext_id_bundestagsverwaltung': '2500',
  'qid_wikidata': 'Q108703579',
  'field_title': 'Dr.'},
 {'id': 175870,
  'entity_type': 'politician',
  'label': 'Marlon Bröhr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175870',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marlon-broehr',
  'first_name': 'Marlon',
  'last_name': 'Bröhr',
  'birth_name': 'Marlon Bröhr',
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Zahnarzt',
  'residence': 'Kastellaun',
  'occupation': 'Landrat des Rhein-Hunsrück-Kreises',
  'statistic_questions': 5,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': '2346',
  'qid_wikidata': 'Q36313751',
  'field_title': 'Dr.'},
 {'id': 175869,
  'entity_type': 'politician',
  'label': 'Markus Reichel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175869',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-reichel',
  'first_name': 'Markus',
  'last_name': 'Reichel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promovierter Wirtschaftsmathematiker',
  'residence': 'Dresden',
  'occupation': 'Selbstständiger Unternehmer',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': '2504',
  'qid_wikidata': 'Q108709302',
  'field_title': 'Dr.'},
 {'id': 175868,
  'entity_type': 'politician',
  'label': 'Markus Niggemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175868',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-niggemann',
  'first_name': 'Markus',
  'last_name': 'Niggemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Kaufmann',
  'residence': 'Cottbus',
  'occupation': 'Beigeordneter und Kämmerer der Stadt Cottbus/Chóśebuz',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175867,
  'entity_type': 'politician',
  'label': 'Maria-Lena Weiss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175867',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-lena-weiss',
  'first_name': 'Maria-Lena',
  'last_name': 'Weiss',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Mühlheim an der Donau',
  'occupation': None,
  'statistic_questions': 13,
  'statistic_questions_answered': 12,
  'ext_id_bundestagsverwaltung': '2573',
  'qid_wikidata': 'Q108708651',
  'field_title': None},
 {'id': 175866,
  'entity_type': 'politician',
  'label': 'Manuela Anders-Granitzki',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175866',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-anders-granitzki',
  'first_name': 'Manuela',
  'last_name': 'Anders-Granitzki',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politik- und Germanistikstudium auf Lehramt',
  'residence': 'Berlin',
  'occupation': 'Lehrerin und Fachseminarleiterin',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175865,
  'entity_type': 'politician',
  'label': 'Laura Rosen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175865',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laura-rosen',
  'first_name': 'Laura',
  'last_name': 'Rosen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Finanzwirtin',
  'residence': None,
  'occupation': 'Sachbearbeiterin Finanzamt Gelsenkirchen',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175864,
  'entity_type': 'politician',
  'label': 'Lars Ehm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175864',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-ehm',
  'first_name': 'Lars',
  'last_name': 'Ehm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Oer-Erkenschwick',
  'occupation': 'Leitender Ministerialrat Land Nordrhein-Westfalen',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175863,
  'entity_type': 'politician',
  'label': 'Klaus Mack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175863',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-mack',
  'first_name': 'Klaus',
  'last_name': 'Mack',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'Mitglied des Deutschen Bundestags',
  'statistic_questions': 10,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': '2455',
  'qid_wikidata': 'Q108757079',
  'field_title': None},
 {'id': 175862,
  'entity_type': 'politician',
  'label': 'Klaus Wiener',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175862',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-wiener',
  'first_name': 'Klaus',
  'last_name': 'Wiener',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ausbildung zum Energieanlagenelektroniker, Studium und Promotion im Fach Volkswirtschaftslehre',
  'residence': 'Haan',
  'occupation': 'Volkswirt',
  'statistic_questions': 14,
  'statistic_questions_answered': 13,
  'ext_id_bundestagsverwaltung': '2576',
  'qid_wikidata': 'Q108706345',
  'field_title': 'Dr.'},
 {'id': 175861,
  'entity_type': 'politician',
  'label': 'Kevin Kratzsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175861',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kevin-kratzsch',
  'first_name': 'Kevin',
  'last_name': 'Kratzsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann in Gesundheitswesen, Veranstaltungskaufmann',
  'residence': 'Berlin ',
  'occupation': 'Schausteller, Gastronom, Veranstaltungsmanager ',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175860,
  'entity_type': 'politician',
  'label': 'Joe Chialo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175860',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joe-chialo',
  'first_name': 'Joe',
  'last_name': 'Chialo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Handwerkliche Ausbildung zum CNC Fräser; Studium der Geschichte, Politik und wirtschaftlichen Staatswissenschaften',
  'residence': 'Berlin',
  'occupation': 'Senator für Kultur und Gesellschaftlichen Zusammenhalt',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175859,
  'entity_type': 'politician',
  'label': 'Joachim Ebmeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175859',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-ebmeyer',
  'first_name': 'Joachim',
  'last_name': 'Ebmeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volkswirt',
  'residence': 'Enger',
  'occupation': 'Referent, Volkswirt',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175858,
  'entity_type': 'politician',
  'label': 'Joachim Kleen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175858',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-kleen',
  'first_name': 'Joachim',
  'last_name': 'Kleen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Tierarzt (Fachtierarzt für Rinder)',
  'residence': 'Tierarzt',
  'occupation': 'Tierarzt in beratender Funktion',
  'statistic_questions': 5,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175857,
  'entity_type': 'politician',
  'label': 'Jessica Heller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175857',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jessica-heller',
  'first_name': 'Jessica',
  'last_name': 'Heller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Krankenschwester',
  'statistic_questions': 13,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175856,
  'entity_type': 'politician',
  'label': 'Holger Bormann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175856',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-bormann',
  'first_name': 'Holger',
  'last_name': 'Bormann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Wolfenbüttel',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175855,
  'entity_type': 'politician',
  'label': 'Hartmut Ziebs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175855',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hartmut-ziebs',
  'first_name': 'Hartmut',
  'last_name': 'Ziebs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Zimmermann, Dipl. Ingenieur',
  'residence': None,
  'occupation': 'Inhaber Gerüstbau-Unternehmen',
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175854,
  'entity_type': 'politician',
  'label': 'Hans-Georg Maaßen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175854',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-georg-maassen',
  'first_name': 'Hans-Georg',
  'last_name': 'Maaßen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promovierter Jurist',
  'residence': None,
  'occupation': 'Rechtsanwalt, ehem. Präsident des Bundesamtes für Verfassungsschutz',
  'statistic_questions': 9,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175853,
  'entity_type': 'politician',
  'label': 'Gerry Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175853',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerry-weber',
  'first_name': 'Gerry',
  'last_name': 'Weber',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175852,
  'entity_type': 'politician',
  'label': 'Georg Günther',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175852',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-guenther',
  'first_name': 'Georg',
  'last_name': 'Günther',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Finanzwirt (FH)',
  'residence': 'Gemeinde Süderholz',
  'occupation': 'Betriebsprüfer',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175851,
  'entity_type': 'politician',
  'label': 'Franziska Hoppermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175851',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franziska-hoppermann',
  'first_name': 'Franziska',
  'last_name': 'Hoppermann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kauffrau',
  'residence': 'Hamburg',
  'occupation': 'Leitende Regierungsbeamtin',
  'statistic_questions': 8,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': '2400',
  'qid_wikidata': 'Q108713725',
  'field_title': None},
 {'id': 175850,
  'entity_type': 'politician',
  'label': 'Frank Wyszkowski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175850',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-wyszkowski',
  'first_name': 'Frank',
  'last_name': 'Wyszkowski',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 5,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175849,
  'entity_type': 'politician',
  'label': 'Florian Bilic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175849',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-bilic',
  'first_name': 'Florian',
  'last_name': 'Bilic',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmännische Ausbildung; Duales Studium BWL (Bachelor of Arts); Berufsbegleitender Master (Master of Business Administration )',
  'residence': 'Pirmasens/Zweibrücken',
  'occupation': 'Referent für Standortpolitik und Unternehmensförderung',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175848,
  'entity_type': 'politician',
  'label': 'Florian Oest',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175848',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-oest',
  'first_name': 'Florian',
  'last_name': 'Oest',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Business Administration',
  'residence': None,
  'occupation': 'Kreisrat des Landkreises Görlitz',
  'statistic_questions': 7,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175847,
  'entity_type': 'politician',
  'label': 'Florian Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175847',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-fuchs',
  'first_name': 'Florian',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Essen',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 5,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175846,
  'entity_type': 'politician',
  'label': 'Fabian Schütz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175846',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-schuetz',
  'first_name': 'Fabian',
  'last_name': 'Schütz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bochum',
  'occupation': 'Regierungsdirektor beim Landesrechnungshof',
  'statistic_questions': 6,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175844,
  'entity_type': 'politician',
  'label': 'Diana Stöcker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175844',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/diana-stoecker',
  'first_name': 'Diana',
  'last_name': 'Stöcker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin M.A. ',
  'residence': None,
  'occupation': 'MdB, Bürgermeisterin a.D.',
  'statistic_questions': 32,
  'statistic_questions_answered': 32,
  'ext_id_bundestagsverwaltung': '2553',
  'qid_wikidata': 'Q108705694',
  'field_title': None},
 {'id': 175843,
  'entity_type': 'politician',
  'label': 'Diana Rieck-Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175843',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/diana-rieck-vogt',
  'first_name': 'Diana',
  'last_name': 'Rieck-Vogt',
  'birth_name': 'Rieck',
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Journalistin',
  'residence': 'Hannover',
  'occupation': 'Klinikmanagerin',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175842,
  'entity_type': 'politician',
  'label': 'Daniel Rosentreter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175842',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-rosentreter',
  'first_name': 'Daniel',
  'last_name': 'Rosentreter',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Berlin',
  'occupation': 'Richter am Verwaltungsgericht',
  'statistic_questions': 5,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175841,
  'entity_type': 'politician',
  'label': 'Corinna Franke-Wöller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175841',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/corinna-franke-woeller',
  'first_name': 'Corinna',
  'last_name': 'Franke-Wöller',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': None,
  'occupation': 'Managerin bei der GiZ',
  'statistic_questions': 8,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175840,
  'entity_type': 'politician',
  'label': 'Claudia Pechstein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175840',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-pechstein',
  'first_name': 'Claudia',
  'last_name': 'Pechstein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Berlin',
  'occupation': 'Eiskunstläuferin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175839,
  'entity_type': 'politician',
  'label': 'Christoph Bußmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175839',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-bussmann',
  'first_name': 'Christoph',
  'last_name': 'Bußmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'B.A. Politikwissenschaften',
  'residence': 'Herne',
  'occupation': 'Angestellter der Agentur für Arbeit',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175838,
  'entity_type': 'politician',
  'label': 'Christoph Jansen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175838',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-jansen-0',
  'first_name': 'Christoph',
  'last_name': 'Jansen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Politikwissenschaft / International Affairs',
  'residence': 'Bonn',
  'occupation': 'Leiter der KommunalAkademie der Konrad-Adenauer-Stiftung, Bezirksbürgermeister des Stadtbezirks Bad Godesberg',
  'statistic_questions': 13,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175837,
  'entity_type': 'politician',
  'label': 'Christian Nienhaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175837',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-nienhaus',
  'first_name': 'Christian',
  'last_name': 'Nienhaus',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175836,
  'entity_type': 'politician',
  'label': 'Catarina dos Santos-Wintz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175836',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/catarina-dos-santos-wintz',
  'first_name': 'Catarina',
  'last_name': 'dos Santos-Wintz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': 'Eschweiler',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 8,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': '2516',
  'qid_wikidata': 'Q108754086',
  'field_title': None},
 {'id': 175835,
  'entity_type': 'politician',
  'label': 'Carsten Büttinghaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175835',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-buettinghaus',
  'first_name': 'Carsten',
  'last_name': 'Büttinghaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verww (FH), Polizeioberkommissar',
  'residence': 'Bispingen',
  'occupation': 'Polizeibeamter',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175834,
  'entity_type': 'politician',
  'label': 'Caroline Lünenschloss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175834',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/caroline-luenenschloss',
  'first_name': 'Caroline',
  'last_name': 'Lünenschloss',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'KFZ-Mechatronikerin und Bachelor of Arts "Wirtschaftswissenschaften"',
  'residence': 'Wuppertal',
  'occupation': 'Assistentin der Geschäftsleitung in einem Unternehmen',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175833,
  'entity_type': 'politician',
  'label': 'Axel Kaufmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175833',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-kaufmann',
  'first_name': 'Axel',
  'last_name': 'Kaufmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': 'Frankfurt am Main',
  'occupation': 'Prokurist bei der KfW',
  'statistic_questions': 6,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175832,
  'entity_type': 'politician',
  'label': 'Armin Häuser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175832',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/armin-haeuser',
  'first_name': 'Armin',
  'last_name': 'Häuser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175831,
  'entity_type': 'politician',
  'label': 'Anne König',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175831',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-koenig',
  'first_name': 'Anne',
  'last_name': 'König',
  'birth_name': '04.12.',
  'sex': 'f',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gesamtschulrektorin',
  'residence': 'Borken',
  'occupation': 'Didaktische Leiterin ',
  'statistic_questions': 12,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': '2424',
  'qid_wikidata': 'Q108756922',
  'field_title': None},
 {'id': 175830,
  'entity_type': 'politician',
  'label': 'Anne Janssen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175830',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-janssen',
  'first_name': 'Anne',
  'last_name': 'Janssen',
  'birth_name': 'Janssen',
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor und Master of Arts',
  'residence': 'Wittmund',
  'occupation': 'Mitglied des Bundestages',
  'statistic_questions': 8,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': '2406',
  'qid_wikidata': 'Q108741931',
  'field_title': None},
 {'id': 175829,
  'entity_type': 'politician',
  'label': 'Anna-Maria Bischof',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175829',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-maria-bischof',
  'first_name': 'Anna-Maria',
  'last_name': 'Bischof',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Kreisgeschäftsführerin bei CDU Schwalm-Eder',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175828,
  'entity_type': 'politician',
  'label': 'Andreas Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175828',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-weber-2',
  'first_name': 'Andreas',
  'last_name': 'Weber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175827,
  'entity_type': 'politician',
  'label': 'Alexander Föhr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175827',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-foehr',
  'first_name': 'Alexander',
  'last_name': 'Föhr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Politikwissenschaft, Öffentliches Recht und Geschichte',
  'residence': 'Heidelberg',
  'occupation': 'MdB, vorher leitender Angestellter, Stadtrat in Heidelberg',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': '2596',
  'qid_wikidata': 'Q116142136',
  'field_title': None},
 {'id': 175224,
  'entity_type': 'politician',
  'label': 'Christian Albrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175224',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-albrecht',
  'first_name': 'Christian',
  'last_name': 'Albrecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Rechtsanwalt ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175214,
  'entity_type': 'politician',
  'label': 'Xenia Sabrina Schüßler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175214',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/xenia-sabrina-schuessler',
  'first_name': 'Xenia Sabrina',
  'last_name': 'Schüßler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Stendal',
  'occupation': 'Rechtsanwältin und Berufsbetreuerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175213,
  'entity_type': 'politician',
  'label': 'Karin Tschernich-Weiske',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175213',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-tschernich-weiske',
  'first_name': 'Karin',
  'last_name': 'Tschernich-Weiske',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': 'Oranienbaum-Wörlitz',
  'occupation': 'Juristin bei Ferropolis GmbH',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175212,
  'entity_type': 'politician',
  'label': 'Elke Simon-Kuch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175212',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-simon-kuch',
  'first_name': 'Elke',
  'last_name': 'Simon-Kuch',
  'birth_name': 'Simon',
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtschaftlerin',
  'residence': 'Weißenfels ',
  'occupation': 'Unternehmerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175211,
  'entity_type': 'politician',
  'label': 'Sven Czekalla',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175211',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-czekalla',
  'first_name': 'Sven',
  'last_name': 'Czekalla',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': 'Krumpa',
  'occupation': 'Mitarbeiter des Oberbürgermeisters der Stadt Merseburg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175210,
  'entity_type': 'politician',
  'label': 'Matthias Redlich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175210',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-redlich',
  'first_name': 'Matthias',
  'last_name': 'Redlich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Politik- und Diplom Verwaltungswissenschaftler',
  'residence': 'Sangerhausen',
  'occupation': 'wissenschaftlicher Mitarbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175209,
  'entity_type': 'politician',
  'label': 'René Barthel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175209',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rene-barthel',
  'first_name': 'René',
  'last_name': 'Barthel',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Lutherstadt Eisleben',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175208,
  'entity_type': 'politician',
  'label': 'Michael Scheffler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175208',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-scheffler-0',
  'first_name': 'Michael',
  'last_name': 'Scheffler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Kaufmann (FH)',
  'residence': 'Salzatal OT Höhnstedt',
  'occupation': 'Kommunalbetreuer ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175207,
  'entity_type': 'politician',
  'label': 'Anja Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175207',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-schneider',
  'first_name': 'Anja',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Pflegewissenschaftlerin',
  'residence': 'Dessau-Roßlau',
  'occupation': 'Geschäftsführerin der Anhaltischen Hospiz- und Palliativgesellschaft gGmbH',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 175206,
  'entity_type': 'politician',
  'label': 'Olaf Feuerborn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175206',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/olaf-feuerborn',
  'first_name': 'Olaf',
  'last_name': 'Feuerborn',
  'birth_name': None,
  'sex': None,
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175205,
  'entity_type': 'politician',
  'label': 'Stefan Ruland',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175205',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-ruland',
  'first_name': 'Stefan',
  'last_name': 'Ruland',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sparkassenbetriebswirt',
  'residence': 'Bernburg',
  'occupation': 'Vermögensberater',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175204,
  'entity_type': 'politician',
  'label': 'Sven Rosomkiewicz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175204',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-rosomkiewicz',
  'first_name': 'Sven',
  'last_name': 'Rosomkiewicz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Versicherungsfachwirt (IHK)',
  'residence': 'Borne',
  'occupation': 'Personalcontroller',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175203,
  'entity_type': 'politician',
  'label': 'Alexander Räuscher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175203',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-raeuscher',
  'first_name': 'Alexander',
  'last_name': 'Räuscher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Osterwieck',
  'occupation': 'Selbstständiger Unternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175202,
  'entity_type': 'politician',
  'label': 'Thomas Krüger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175202',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-krueger-0',
  'first_name': 'Thomas',
  'last_name': 'Krüger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Huy-Neinstedt',
  'occupation': 'Bürgermeister ',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175201,
  'entity_type': 'politician',
  'label': 'Anne-Marie Keding',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175201',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-marie-keding',
  'first_name': 'Anne-Marie',
  'last_name': 'Keding',
  'birth_name': 'Volger',
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': 'Magdeburg ',
  'occupation': 'Landtagsabgeordnete',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175200,
  'entity_type': 'politician',
  'label': 'Stephen Gerhard Stehli',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175200',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephen-gerhard-stehli',
  'first_name': 'Stephen Gerhard',
  'last_name': 'Stehli',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jura',
  'residence': 'Magdeburg',
  'occupation': 'Jurist/Referatsleiter in der Landesverwaltung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175199,
  'entity_type': 'politician',
  'label': 'Tim Teßmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175199',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-tessmann',
  'first_name': 'Tim',
  'last_name': 'Teßmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sozialpädagoge ',
  'residence': 'Haldensleben',
  'occupation': 'Sozialarbeiter',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175198,
  'entity_type': 'politician',
  'label': 'Thomas Staudt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175198',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-staudt',
  'first_name': 'Thomas',
  'last_name': 'Staudt',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Malermeister',
  'residence': 'Tangermünde',
  'occupation': 'Malermeister, Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175197,
  'entity_type': 'politician',
  'label': 'Sandra Hietel-Heuer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175197',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-hietel-heuer',
  'first_name': 'Sandra',
  'last_name': 'Hietel-Heuer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirtin (FH) / Master of Arts Innovatives Management',
  'residence': 'Gardelegen',
  'occupation': 'Pressesprecherin CDU Fraktion Sachsen-Anhalts',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 175001,
  'entity_type': 'politician',
  'label': 'Kristina Nordt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/175001',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kristina-nordt',
  'first_name': 'Kristina',
  'last_name': 'Nordt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M. A. Staatswissenschaften-Sozialwissenschaften',
  'residence': 'Erfurt',
  'occupation': 'MdB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2306',
  'qid_wikidata': 'Q105887641',
  'field_title': None},
 {'id': 174982,
  'entity_type': 'politician',
  'label': 'Michael Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174982',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-fuchs-0',
  'first_name': 'Michael',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': None,
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': ' k. A.',
  'residence': None,
  'occupation': ' selbstständiger Gewerbebetreibender, Altenpflegepension Michael Fuchs GmbH',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174179,
  'entity_type': 'politician',
  'label': 'Isabell Rathgeb',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174179',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabell-rathgeb',
  'first_name': 'Isabell',
  'last_name': 'Rathgeb',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirtin (BA)',
  'residence': 'Stimpfach',
  'occupation': 'selbständig im Kommunikations- und Marketingbereich',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174178,
  'entity_type': 'politician',
  'label': 'Dominique Emerich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174178',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominique-emerich',
  'first_name': 'Dominique',
  'last_name': 'Emerich',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Zweites juristisches Staatsexamen',
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174177,
  'entity_type': 'politician',
  'label': 'Diana Arnold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174177',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/diana-arnold',
  'first_name': 'Diana',
  'last_name': 'Arnold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Rottenburg-Oberndorf',
  'occupation': 'Polizeibeamtin',
  'statistic_questions': 5,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174176,
  'entity_type': 'politician',
  'label': 'Manuel Hailfinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174176',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-hailfinger',
  'first_name': 'Manuel',
  'last_name': 'Hailfinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechtswissenschaften',
  'residence': 'Sonnenbühl',
  'occupation': 'Justiziar',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106560729',
  'field_title': None},
 {'id': 174175,
  'entity_type': 'politician',
  'label': 'Frank Glaunsinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174175',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-glaunsinger',
  'first_name': 'Frank',
  'last_name': 'Glaunsinger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Reutlingen-Gönningen',
  'occupation': 'Notfallsanitäter',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174174,
  'entity_type': 'politician',
  'label': 'Christof Nitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174174',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christof-nitz',
  'first_name': 'Christof',
  'last_name': 'Nitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt',
  'residence': None,
  'occupation': 'Dozent für Kommunalrecht, Geschäftsführer, Bürgermeister a.D.',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174173,
  'entity_type': 'politician',
  'label': 'Tobias Herrmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174173',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-herrmann',
  'first_name': 'Tobias',
  'last_name': 'Herrmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Singen',
  'occupation': 'Lehrer, Studiendirektor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174172,
  'entity_type': 'politician',
  'label': 'Levin Eisenmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174172',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/levin-eisenmann',
  'first_name': 'Levin',
  'last_name': 'Eisenmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Laufendes Studium der Rechtwissenschaften',
  'residence': 'Konstanz',
  'occupation': 'Student',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174171,
  'entity_type': 'politician',
  'label': 'Raphael Rabe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174171',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/raphael-rabe',
  'first_name': 'Raphael',
  'last_name': 'Rabe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann für Versicherungen und Finanzen ',
  'residence': 'Villingen-Schwenningen',
  'occupation': 'Kaufmann für Versicherungen und Finanzen ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174170,
  'entity_type': 'politician',
  'label': 'Jutta Zeisset',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174170',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jutta-zeisset',
  'first_name': 'Jutta',
  'last_name': 'Zeisset',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Social Media und Online Marketing Manager',
  'residence': 'Weisweil',
  'occupation': 'Unternehmerin',
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174169,
  'entity_type': 'politician',
  'label': 'Arndt Michael',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174169',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/arndt-michael',
  'first_name': 'Arndt',
  'last_name': 'Michael',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist und promovierter Politikwissenschaftler',
  'residence': 'Freiburg',
  'occupation': 'Dozent und Lehrbeauftragter; Programmkoordinator des Colloquium politicum, Universität Freiburg',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 174168,
  'entity_type': 'politician',
  'label': 'Manuel Herder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174168',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuel-herder',
  'first_name': 'Manuel',
  'last_name': 'Herder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Buchenbach',
  'occupation': 'Verleger',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174167,
  'entity_type': 'politician',
  'label': 'Katrin Schindele',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174167',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katrin-schindele',
  'first_name': 'Katrin',
  'last_name': 'Schindele',
  'birth_name': 'Springmann',
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor of Engineering',
  'residence': 'Baiersbronn',
  'occupation': 'Entwicklungsingenieurin',
  'statistic_questions': 6,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106411130',
  'field_title': None},
 {'id': 174166,
  'entity_type': 'politician',
  'label': 'Philippe Singer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174166',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philippe-singer',
  'first_name': 'Philippe',
  'last_name': 'Singer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechtswissenschaften',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174165,
  'entity_type': 'politician',
  'label': 'Philipp Dörflinger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174165',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-doerflinger',
  'first_name': 'Philipp',
  'last_name': 'Dörflinger',
  'birth_name': 'Dörflinger',
  'sex': 'm',
  'year_of_birth': 1997,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor of Arts - BWL ',
  'residence': 'Pforzheim',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174164,
  'entity_type': 'politician',
  'label': 'Andreas Sturm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174164',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-sturm',
  'first_name': 'Andreas',
  'last_name': 'Sturm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studienrat',
  'residence': 'Neulußheim',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q73137502',
  'field_title': None},
 {'id': 174163,
  'entity_type': 'politician',
  'label': 'Christiane Staab',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174163',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-staab',
  'first_name': 'Christiane',
  'last_name': 'Staab',
  'birth_name': 'Heck',
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsassessorin (2 jur. Staatsexamina)',
  'residence': 'Walldorf',
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106407885',
  'field_title': None},
 {'id': 174162,
  'entity_type': 'politician',
  'label': 'Alfried Wieczorek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174162',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfried-wieczorek',
  'first_name': 'Alfried',
  'last_name': 'Wieczorek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium in Vor- und Frühgeschichte und Evangelische Theologie',
  'residence': None,
  'occupation': 'Archäologe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174161,
  'entity_type': 'politician',
  'label': 'Lennart Christ',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174161',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lennart-christ',
  'first_name': 'Lennart',
  'last_name': 'Christ',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1998,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Maschinenbau-Ingenieur',
  'residence': 'Mannheim',
  'occupation': 'Maschinenbau-Ingenieur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174160,
  'entity_type': 'politician',
  'label': 'Anja Boto Rodriguez',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174160',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-boto-rodriguez',
  'first_name': 'Anja',
  'last_name': 'Boto Rodriguez',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtin',
  'residence': 'Heidelberg',
  'occupation': 'Controlling bei Airbus',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174159,
  'entity_type': 'politician',
  'label': 'Ansgar Mayr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174159',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ansgar-mayr',
  'first_name': 'Ansgar',
  'last_name': 'Mayr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirt (BA)',
  'residence': 'Stutensee',
  'occupation': 'Controller',
  'statistic_questions': 10,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106561651',
  'field_title': None},
 {'id': 174158,
  'entity_type': 'politician',
  'label': 'Rahsan Dogan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174158',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rahsan-dogan',
  'first_name': 'Rahsan',
  'last_name': 'Dogan',
  'birth_name': 'Dogan',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurastudium',
  'residence': 'Karlsruhe ',
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 174157,
  'entity_type': 'politician',
  'label': 'Tim Bückner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174157',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-bueckner',
  'first_name': 'Tim',
  'last_name': 'Bückner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Abtsgmünd-Untergröningen',
  'occupation': 'Geschäftsführer',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106556626',
  'field_title': None},
 {'id': 174156,
  'entity_type': 'politician',
  'label': 'Magnus Welsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174156',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/magnus-welsch',
  'first_name': 'Magnus',
  'last_name': 'Welsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtswissenschaft',
  'residence': None,
  'occupation': 'Regierungsrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174155,
  'entity_type': 'politician',
  'label': 'Michael Preusch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174155',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-preusch',
  'first_name': 'Michael',
  'last_name': 'Preusch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Humanmediziner',
  'residence': '75031 Eppingen',
  'occupation': 'Arzt',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q105962305',
  'field_title': 'Dr.'},
 {'id': 174154,
  'entity_type': 'politician',
  'label': 'Georg Devrikis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174154',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-devrikis',
  'first_name': 'Georg',
  'last_name': 'Devrikis',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ausgebildeter Bankkaufmann',
  'residence': 'Murrhardt',
  'occupation': 'Finanzberater bei der Volksbank Backnang',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174153,
  'entity_type': 'politician',
  'label': 'Christian Gehring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174153',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-gehring',
  'first_name': 'Christian',
  'last_name': 'Gehring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Verwaltungswirt F.H.',
  'residence': 'Kernen i.R.',
  'occupation': 'Kriminalhauptkommissar',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106082150',
  'field_title': None},
 {'id': 174152,
  'entity_type': 'politician',
  'label': 'Tobias Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174152',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-vogt-0',
  'first_name': 'Tobias',
  'last_name': 'Vogt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kfz-Techniker-Meister, Betriebswirt B.A. und Master in Automotive Management',
  'residence': 'Kirchheim am Neckar',
  'occupation': 'Geschäftsführender Gesellschafter',
  'statistic_questions': 5,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106228626',
  'field_title': None},
 {'id': 174151,
  'entity_type': 'politician',
  'label': 'Andrea Wechsler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174151',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-wechsler',
  'first_name': 'Andrea',
  'last_name': 'Wechsler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurastudium',
  'residence': None,
  'occupation': 'Professorin für Wirtschaftsprivatrecht',
  'statistic_questions': 2,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Prof. Dr.'},
 {'id': 174150,
  'entity_type': 'politician',
  'label': 'Sarah Schweizer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174150',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-schweizer',
  'first_name': 'Sarah',
  'last_name': 'Schweizer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljuristin',
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 10,
  'statistic_questions_answered': 7,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106567168',
  'field_title': None},
 {'id': 174149,
  'entity_type': 'politician',
  'label': 'Natalie Pfau-Weller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174149',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-pfau-weller',
  'first_name': 'Natalie',
  'last_name': 'Pfau-Weller',
  'birth_name': 'Pfau ',
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promovierte Politikwissenschaftlerin',
  'residence': 'Kirchheim unter Teck',
  'occupation': 'Wissenschaftliche Mitarbeiterin Forschungsinstitut',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106565995',
  'field_title': 'Dr.'},
 {'id': 174148,
  'entity_type': 'politician',
  'label': 'Matthias Miller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174148',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-miller',
  'first_name': 'Matthias',
  'last_name': 'Miller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatsexamen Jura, Dr. jur.',
  'residence': 'Steinbronn',
  'occupation': 'Notarassessor, Volljurist',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q106193050',
  'field_title': 'Dr.'},
 {'id': 174147,
  'entity_type': 'politician',
  'label': 'Susanne Eisenmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174147',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-eisenmann',
  'first_name': 'Susanne',
  'last_name': 'Eisenmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister Artium in Germanistik, Linguistik und Politikwissenschaft',
  'residence': None,
  'occupation': 'Ministerin für Kultus, Jugend und Sport',
  'statistic_questions': 14,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174146,
  'entity_type': 'politician',
  'label': 'Ruth Schagemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174146',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruth-schagemann',
  'first_name': 'Ruth',
  'last_name': 'Schagemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieurin',
  'residence': 'Stuttgart',
  'occupation': 'Architektin',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174113,
  'entity_type': 'politician',
  'label': 'Lars Rieger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174113',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-rieger',
  'first_name': 'Lars',
  'last_name': 'Rieger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': 'Schweich',
  'occupation': 'Mitarbeiter bei der Generalzolldirektion',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174112,
  'entity_type': 'politician',
  'label': 'Tobias Baumgärtner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174112',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-baumgaertner',
  'first_name': 'Tobias',
  'last_name': 'Baumgärtner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174111,
  'entity_type': 'politician',
  'label': 'Manfred Schulz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174111',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-schulz-0',
  'first_name': 'Manfred',
  'last_name': 'Schulz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH) / Betriebswirt (VWA)',
  'residence': 'Kaiserslautern',
  'occupation': 'Beamter bei der Technischen Universität Kaiserslautern',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174110,
  'entity_type': 'politician',
  'label': 'Isabel Steinhauer-Theis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174110',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-steinhauer-theis',
  'first_name': 'Isabel',
  'last_name': 'Steinhauer-Theis',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplombetriebswirtin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174109,
  'entity_type': 'politician',
  'label': 'Andrea Schmitt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174109',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-schmitt',
  'first_name': 'Andrea',
  'last_name': 'Schmitt',
  'birth_name': 'Krebühl',
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kriminalhauptkommissarin ',
  'residence': 'Kerzenheim',
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174108,
  'entity_type': 'politician',
  'label': 'Tobias Mahr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174108',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-mahr',
  'first_name': 'Tobias',
  'last_name': 'Mahr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Berufsbegleitendes Studium ( Wirtschaftsrecht)',
  'residence': 'Ludwigshafen',
  'occupation': 'Angestellter bei CDU',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174107,
  'entity_type': 'politician',
  'label': 'Natalie Bauernschmitt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174107',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-bauernschmitt',
  'first_name': 'Natalie',
  'last_name': 'Bauernschmitt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungsbeamtin',
  'residence': 'Alzey',
  'occupation': 'Sachgebietsleitung Kommunaler Sitzungsdienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174106,
  'entity_type': 'politician',
  'label': 'Lena Knappek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-knappek',
  'first_name': 'Lena',
  'last_name': 'Knappek',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffrau für Spedition und Logistikdienstleistung',
  'residence': 'Nierstein',
  'occupation': 'Kauffrau für Spedition und Logistikdienstleistung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174105,
  'entity_type': 'politician',
  'label': 'Stefan Bastiné',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174105',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-bastine',
  'first_name': 'Stefan',
  'last_name': 'Bastiné',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bingen',
  'occupation': 'Studienberater',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174104,
  'entity_type': 'politician',
  'label': 'Hannsgeorg Schönig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174104',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hannsgeorg-schoenig',
  'first_name': 'Hannsgeorg',
  'last_name': 'Schönig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174103,
  'entity_type': 'politician',
  'label': 'Sabine Flegel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174103',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-flegel',
  'first_name': 'Sabine',
  'last_name': 'Flegel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174101,
  'entity_type': 'politician',
  'label': 'Dennis Junk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174101',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dennis-junk',
  'first_name': 'Dennis',
  'last_name': 'Junk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann, Verwaltungslaufbahn mit Abschluss Bachelor of Arts (FH)',
  'residence': 'Salmtal',
  'occupation': 'Bürgermeister Verbandsgemeinde Wittlich-Land',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174100,
  'entity_type': 'politician',
  'label': 'Miroslaw Kowalski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174100',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miroslaw-kowalski',
  'first_name': 'Miroslaw',
  'last_name': 'Kowalski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer, Betriebswirt',
  'residence': 'Birkenfeld',
  'occupation': 'Bürgermeister, Koordinator für Disposition',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174099,
  'entity_type': 'politician',
  'label': 'Sascha Wickert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174099',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-wickert',
  'first_name': 'Sascha',
  'last_name': 'Wickert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politik und Verwaltung/Öffentliches Recht B.A.',
  'residence': 'Boos',
  'occupation': 'Referent für Fundraising',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174098,
  'entity_type': 'politician',
  'label': 'Tobias Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174098',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-vogt',
  'first_name': 'Tobias',
  'last_name': 'Vogt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor Betriebswirtschaftslehre',
  'residence': 'Buch',
  'occupation': 'Teamleiter Finanzierungen & Liegenschaften',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174097,
  'entity_type': 'politician',
  'label': 'Petra Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174097',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/petra-schneider',
  'first_name': 'Petra',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufrau',
  'residence': 'Niederzissen',
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174096,
  'entity_type': 'politician',
  'label': 'Torsten Welling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174096',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-welling',
  'first_name': 'Torsten',
  'last_name': 'Welling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': 'Ochtendung',
  'occupation': 'Head of Financial Accounting, Controlling, Export Financer',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174095,
  'entity_type': 'politician',
  'label': 'Anette Moesta',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174095',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anette-moesta',
  'first_name': 'Anette',
  'last_name': 'Moesta',
  'birth_name': 'Berressem',
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin (FH), Diplom-Verwaltungsbetriebswirtin (VWA)',
  'residence': 'Plaidt',
  'occupation': 'Beschäftigte, Bistum Trier',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174094,
  'entity_type': 'politician',
  'label': 'Peter Moskopp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174094',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-moskopp',
  'first_name': 'Peter',
  'last_name': 'Moskopp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174093,
  'entity_type': 'politician',
  'label': 'Stephan Otto',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174093',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-otto',
  'first_name': 'Stephan',
  'last_name': 'Otto',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': 'Koblenz',
  'occupation': 'Beamter',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174092,
  'entity_type': 'politician',
  'label': 'Udo Rau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174092',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/udo-rau',
  'first_name': 'Udo',
  'last_name': 'Rau',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174091,
  'entity_type': 'politician',
  'label': 'Janick Pape',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174091',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/janick-pape',
  'first_name': 'Janick',
  'last_name': 'Pape',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': 'Westerburg',
  'occupation': 'Kreisverwaltung Montabaur',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174090,
  'entity_type': 'politician',
  'label': 'Pascal Badziong',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174090',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pascal-badziong',
  'first_name': 'Pascal',
  'last_name': 'Badziong',
  'birth_name': 'Pascal Badziong',
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gymnasiallehrer & Journalist',
  'residence': 'Neuwied',
  'occupation': 'Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174089,
  'entity_type': 'politician',
  'label': 'Matthias Reuber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174089',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-reuber',
  'first_name': 'Matthias',
  'last_name': 'Reuber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promovierter Mathematiker',
  'residence': 'Birken-Honigsessen',
  'occupation': 'Wissenschaftlicher Mitarbeiter und Data Scientist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174063,
  'entity_type': 'politician',
  'label': 'Christian Natterer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174063',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-natterer',
  'first_name': 'Christian',
  'last_name': 'Natterer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2304',
  'qid_wikidata': 'Q101533533',
  'field_title': None},
 {'id': 174057,
  'entity_type': 'politician',
  'label': 'Peter Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174057',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-mueller-1',
  'first_name': 'Peter',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Ministerpräsdident des Saarlands',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q62333',
  'field_title': None},
 {'id': 174051,
  'entity_type': 'politician',
  'label': 'Karina Wächter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174051',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karina-waechter',
  'first_name': 'Karina',
  'last_name': 'Wächter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Finanzwirtin',
  'residence': 'Bernkastel-Kues',
  'occupation': 'Steuerberaterin',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q98636301',
  'field_title': None},
 {'id': 174049,
  'entity_type': 'politician',
  'label': 'Sandra Johann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174049',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-johann',
  'first_name': 'Sandra',
  'last_name': 'Johann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174048,
  'entity_type': 'politician',
  'label': 'Michael Ludwig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174048',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-ludwig',
  'first_name': 'Michael',
  'last_name': 'Ludwig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann, Betriebswirt',
  'residence': 'Bitburg',
  'occupation': 'Unternehmer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 174047,
  'entity_type': 'politician',
  'label': 'Horst Falk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/174047',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/horst-falk',
  'first_name': 'Horst',
  'last_name': 'Falk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Oberstudienrat',
  'residence': 'Dautphetal',
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173140,
  'entity_type': 'politician',
  'label': 'Egon Zarnowka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/egon-zarnowka',
  'first_name': 'Egon',
  'last_name': 'Zarnowka',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1930,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur / Architekt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173139,
  'entity_type': 'politician',
  'label': 'Lars Zander',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173139',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-zander',
  'first_name': 'Lars',
  'last_name': 'Zander',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Betriebswirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173138,
  'entity_type': 'politician',
  'label': 'Bianca Wollenweber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173138',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bianca-wollenweber',
  'first_name': 'Bianca',
  'last_name': 'Wollenweber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Oberstudienrätin, Koordinatorin für Berufsorientierung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173137,
  'entity_type': 'politician',
  'label': 'Gabriele Wirth',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173137',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-wirth',
  'first_name': 'Gabriele',
  'last_name': 'Wirth',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1946,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Geisteswissenschaften',
  'residence': None,
  'occupation': 'Redakteurin im Ruhestand',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173136,
  'entity_type': 'politician',
  'label': 'Götz Wiese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173136',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/goetz-wiese',
  'first_name': 'Götz',
  'last_name': 'Wiese',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Winterhude, Hamburg',
  'occupation': 'MdHB, Rechtsanwalt, Professor',
  'statistic_questions': 7,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173135,
  'entity_type': 'politician',
  'label': 'Benjamin Welling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173135',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/benjamin-welling',
  'first_name': 'Benjamin',
  'last_name': 'Welling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173134,
  'entity_type': 'politician',
  'label': 'Leonie Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173134',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/leonie-weber',
  'first_name': 'Leonie',
  'last_name': 'Weber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1999,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Jurastudentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173133,
  'entity_type': 'politician',
  'label': 'Gabriele von Stritzky',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173133',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-von-stritzky',
  'first_name': 'Gabriele',
  'last_name': 'von Stritzky',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Leitung einer Flüchtlingsunterkunft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173132,
  'entity_type': 'politician',
  'label': 'Marlies von Sawilski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173132',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marlies-von-sawilski',
  'first_name': 'Marlies',
  'last_name': 'von Sawilski',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gestalterin für visuelles Marketing',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173131,
  'entity_type': 'politician',
  'label': 'Christiane von Deutsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173131',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-von-deutsch',
  'first_name': 'Christiane',
  'last_name': 'von Deutsch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173130,
  'entity_type': 'politician',
  'label': 'Jörn Tuschke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173130',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joern-tuschke',
  'first_name': 'Jörn',
  'last_name': 'Tuschke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Senior Manager Logistikplanung bei Schenker Deutschland AG',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173129,
  'entity_type': 'politician',
  'label': 'Robert Timmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173129',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-timmann-0',
  'first_name': 'Robert',
  'last_name': 'Timmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Leitender Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173128,
  'entity_type': 'politician',
  'label': 'Birgit Stadermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173128',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-stadermann',
  'first_name': 'Birgit',
  'last_name': 'Stadermann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'PR-Referentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173127,
  'entity_type': 'politician',
  'label': 'Gerda Seese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173127',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerda-seese',
  'first_name': 'Gerda',
  'last_name': 'Seese',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1938,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hotelfachfrau',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173126,
  'entity_type': 'politician',
  'label': 'Daniel Seehaber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173126',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-seehaber',
  'first_name': 'Daniel',
  'last_name': 'Seehaber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1995,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatlich anerkannter Erzieher',
  'residence': None,
  'occupation': 'Erzieher und Fernstudent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173125,
  'entity_type': 'politician',
  'label': 'Jasper Schwenzow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173125',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jasper-schwenzow',
  'first_name': 'Jasper',
  'last_name': 'Schwenzow',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': None,
  'occupation': 'Doktorand, Berater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173124,
  'entity_type': 'politician',
  'label': 'Katharina Schuwalski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173124',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-schuwalski',
  'first_name': 'Katharina',
  'last_name': 'Schuwalski',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Juristin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173123,
  'entity_type': 'politician',
  'label': 'Mona Schnackenburg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173123',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mona-schnackenburg',
  'first_name': 'Mona',
  'last_name': 'Schnackenburg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173122,
  'entity_type': 'politician',
  'label': 'Christoph Schaefers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173122',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-schaefers',
  'first_name': 'Christoph',
  'last_name': 'Schaefers',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student der Humanmedizin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173121,
  'entity_type': 'politician',
  'label': 'Svenja Pfeiffer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173121',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/svenja-pfeiffer',
  'first_name': 'Svenja',
  'last_name': 'Pfeiffer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M.A. International Management',
  'residence': None,
  'occupation': 'Product Owner & Head of Training',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173120,
  'entity_type': 'politician',
  'label': 'Beatrice Oelze',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173120',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beatrice-oelze',
  'first_name': 'Beatrice',
  'last_name': 'Oelze',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Biologin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173119,
  'entity_type': 'politician',
  'label': 'Arne Nüchterlein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173119',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/arne-nuchterlein',
  'first_name': 'Arne',
  'last_name': 'Nüchterlein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173118,
  'entity_type': 'politician',
  'label': 'Martha Nowakowski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173118',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martha-nowakowski',
  'first_name': 'Martha',
  'last_name': 'Nowakowski',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1998,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Studentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173117,
  'entity_type': 'politician',
  'label': 'Ralf Niemeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173117',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-niemeyer',
  'first_name': 'Ralf',
  'last_name': 'Niemeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': None,
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173116,
  'entity_type': 'politician',
  'label': 'Antje Müller-Möller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173116',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antje-mueller-moeller',
  'first_name': 'Antje',
  'last_name': 'Müller-Möller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': None,
  'occupation': 'freie Marketing-Beraterin, Mitglied der Hamburger Elternkammer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173115,
  'entity_type': 'politician',
  'label': 'Thomas Mühlenkamp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173115',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-muehlenkamp',
  'first_name': 'Thomas',
  'last_name': 'Mühlenkamp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173114,
  'entity_type': 'politician',
  'label': 'Caroline Mücke-Kemp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173114',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/caroline-muecke-kemp',
  'first_name': 'Caroline',
  'last_name': 'Mücke-Kemp',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor International Relations',
  'residence': None,
  'occupation': 'Beraterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173113,
  'entity_type': 'politician',
  'label': 'Robin Morgenstern',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173113',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robin-morgenstern',
  'first_name': 'Robin',
  'last_name': 'Morgenstern',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173112,
  'entity_type': 'politician',
  'label': 'Christian Merker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173112',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-merker',
  'first_name': 'Christian',
  'last_name': 'Merker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173111,
  'entity_type': 'politician',
  'label': 'Patricia Meier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173111',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patricia-meier',
  'first_name': 'Patricia',
  'last_name': 'Meier',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungsfachangestellte',
  'residence': None,
  'occupation': 'Geschäftsführerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173110,
  'entity_type': 'politician',
  'label': 'Martina Lütjens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173110',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-luetjens',
  'first_name': 'Martina',
  'last_name': 'Lütjens',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Sachbearbeiterin, Bezirksabgeordnete HH Nord',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173109,
  'entity_type': 'politician',
  'label': 'Doris Lüdke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173109',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/doris-luedke',
  'first_name': 'Doris',
  'last_name': 'Lüdke',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Pharmazeutin',
  'residence': None,
  'occupation': 'Apothekerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173108,
  'entity_type': 'politician',
  'label': 'Hans-Jürgen Lieberich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173108',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-juergen-lieberich',
  'first_name': 'Hans-Jürgen',
  'last_name': 'Lieberich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ing. Luft - und Raumfahrttechnik',
  'residence': None,
  'occupation': 'Software Engineer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173107,
  'entity_type': 'politician',
  'label': 'Oxana Li',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173107',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oxana-li',
  'first_name': 'Oxana',
  'last_name': 'Li',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Betreiberin eines Reisebüros',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173106,
  'entity_type': 'politician',
  'label': 'Markus Kranig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-kranig',
  'first_name': 'Markus',
  'last_name': 'Kranig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': None,
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173105,
  'entity_type': 'politician',
  'label': 'Sandro Kappe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173105',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandro-kappe',
  'first_name': 'Sandro',
  'last_name': 'Kappe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdHB, Zollbeamter',
  'statistic_questions': 19,
  'statistic_questions_answered': 18,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173104,
  'entity_type': 'politician',
  'label': 'Oradee Kailus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173104',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oradee-kailus',
  'first_name': 'Oradee',
  'last_name': 'Kailus',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Hausfrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173103,
  'entity_type': 'politician',
  'label': 'Marius Kabuse',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173103',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marius-kabuse',
  'first_name': 'Marius',
  'last_name': 'Kabuse',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bachelor of Transport & Logistics',
  'residence': None,
  'occupation': 'Schifffahrtskaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173102,
  'entity_type': 'politician',
  'label': 'Yvonne Jungen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173102',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-jungen',
  'first_name': 'Yvonne',
  'last_name': 'Jungen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173101,
  'entity_type': 'politician',
  'label': 'Peter Jaeger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173101',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-jaeger',
  'first_name': 'Peter',
  'last_name': 'Jaeger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufmann, Digital Experte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173100,
  'entity_type': 'politician',
  'label': 'Hans-Helmut Homann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173100',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-helmut-homann',
  'first_name': 'Hans-Helmut',
  'last_name': 'Homann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Einzelhandelskaufmann',
  'residence': None,
  'occupation': 'Rentner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173099,
  'entity_type': 'politician',
  'label': 'Christian Holst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173099',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-holst',
  'first_name': 'Christian',
  'last_name': 'Holst',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173098,
  'entity_type': 'politician',
  'label': 'Gunther Herwig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173098',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gunther-herwig',
  'first_name': 'Gunther',
  'last_name': 'Herwig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Großhandelskaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173097,
  'entity_type': 'politician',
  'label': 'Philipp Hentschel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173097',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-hentschel',
  'first_name': 'Philipp',
  'last_name': 'Hentschel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Arts',
  'residence': None,
  'occupation': 'Leitender Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173096,
  'entity_type': 'politician',
  'label': 'Antonia Haufler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173096',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antonia-haufler',
  'first_name': 'Antonia',
  'last_name': 'Haufler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Geschäftsführerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173095,
  'entity_type': 'politician',
  'label': 'Jessica Hallermayer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173095',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jessica-hallermayer',
  'first_name': 'Jessica',
  'last_name': 'Hallermayer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': '1. und 2. Juristisches Staatsexamen',
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173094,
  'entity_type': 'politician',
  'label': 'Fabian Haase',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173094',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-haase',
  'first_name': 'Fabian',
  'last_name': 'Haase',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Finanzbeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173093,
  'entity_type': 'politician',
  'label': 'Henning Grote',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173093',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/henning-grote',
  'first_name': 'Henning',
  'last_name': 'Grote',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'kaufmännischer Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173092,
  'entity_type': 'politician',
  'label': 'Antonia-Katharina Goldner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173092',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/antonia-katharina-goldner',
  'first_name': 'Antonia-Katharina',
  'last_name': 'Goldner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Vorstand, Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173091,
  'entity_type': 'politician',
  'label': 'Sven Gerber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173091',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-gerber',
  'first_name': 'Sven',
  'last_name': 'Gerber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Chemiker',
  'residence': None,
  'occupation': 'Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173090,
  'entity_type': 'politician',
  'label': 'Walter Frank',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173090',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-frank',
  'first_name': 'Walter',
  'last_name': 'Frank',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Jurist, Schwerpunkt Sozialrecht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173089,
  'entity_type': 'politician',
  'label': 'Ute Frank',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173089',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ute-frank',
  'first_name': 'Ute',
  'last_name': 'Frank',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rechtsanwaltsgehilfin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173088,
  'entity_type': 'politician',
  'label': 'Martin Fischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173088',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-fischer-1',
  'first_name': 'Martin',
  'last_name': 'Fischer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Projektleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173087,
  'entity_type': 'politician',
  'label': 'Annette Etezadzadeh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173087',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annette-etezadzadeh',
  'first_name': 'Annette',
  'last_name': 'Etezadzadeh',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Studienrätin, Gymnasiallehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173086,
  'entity_type': 'politician',
  'label': 'Kay Elvert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173086',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kay-elvert',
  'first_name': 'Kay',
  'last_name': 'Elvert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Polizist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173085,
  'entity_type': 'politician',
  'label': 'Sören Ehrlich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173085',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/soeren-ehrlich',
  'first_name': 'Sören',
  'last_name': 'Ehrlich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehramtsstudent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173084,
  'entity_type': 'politician',
  'label': 'Malte Dönselmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173084',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/malte-doenselmann',
  'first_name': 'Malte',
  'last_name': 'Dönselmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'Personal- und Unternehmensberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173083,
  'entity_type': 'politician',
  'label': 'Laura Dieball',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173083',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laura-dieball',
  'first_name': 'Laura',
  'last_name': 'Dieball',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Referentin Unternehmenskommunikation, Pressesprecherin und Chefredakteurin des Alsterblatts',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173082,
  'entity_type': 'politician',
  'label': 'Christin Detje',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173082',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christin-detje',
  'first_name': 'Christin',
  'last_name': 'Detje',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173081,
  'entity_type': 'politician',
  'label': 'Matthias Busold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173081',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-busold',
  'first_name': 'Matthias',
  'last_name': 'Busold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Geschäftsführer Busold Consulting',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173080,
  'entity_type': 'politician',
  'label': 'Jan Buntrock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173080',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-buntrock',
  'first_name': 'Jan',
  'last_name': 'Buntrock',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': None,
  'occupation': 'Berufsoffizier',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173079,
  'entity_type': 'politician',
  'label': 'Niklas Brüggemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173079',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-bruggemann',
  'first_name': 'Niklas',
  'last_name': 'Brüggemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promotion (Jura)',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173078,
  'entity_type': 'politician',
  'label': 'Franziska Bösenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173078',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franziska-bosenberg',
  'first_name': 'Franziska',
  'last_name': 'Bösenberg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': None,
  'occupation': 'Wissenschaftliche Mitarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173077,
  'entity_type': 'politician',
  'label': 'Jakob Borgmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173077',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jakob-borgmann',
  'first_name': 'Jakob',
  'last_name': 'Borgmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Promotion an der HHL',
  'residence': None,
  'occupation': 'Unternehmer bei Borgmann&Puls',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173076,
  'entity_type': 'politician',
  'label': 'Clarissa Bohlmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173076',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/clarissa-bohlmann',
  'first_name': 'Clarissa',
  'last_name': 'Bohlmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'M.Sc. Economics & Business',
  'residence': None,
  'occupation': 'Data- & Web-Analyst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173075,
  'entity_type': 'politician',
  'label': 'Anna-Lisa Benkhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173075',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-lisa-benkhoff',
  'first_name': 'Anna-Lisa',
  'last_name': 'Benkhoff',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173074,
  'entity_type': 'politician',
  'label': 'Sophie-Louise Bartmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173074',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sophie-louise-bartmann',
  'first_name': 'Sophie-Louise',
  'last_name': 'Bartmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173073,
  'entity_type': 'politician',
  'label': 'Daniela Aust',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173073',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniela-aust',
  'first_name': 'Daniela',
  'last_name': 'Aust',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Geschäftsführerin der CDU-Bezirksfraktion',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173072,
  'entity_type': 'politician',
  'label': 'Mareike Ahrens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173072',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mareike-ahrens',
  'first_name': 'Mareike',
  'last_name': 'Ahrens',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bestattermeisterin',
  'residence': None,
  'occupation': 'Bestatterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 173071,
  'entity_type': 'politician',
  'label': 'Andrea Adamzik',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/173071',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-adamzik',
  'first_name': 'Andrea',
  'last_name': 'Adamzik',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'MBA, Betriebswirtin',
  'residence': None,
  'occupation': 'Personal- und Karriereberaterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 172621,
  'entity_type': 'politician',
  'label': 'Jennifer Groß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/172621',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jennifer-gross',
  'first_name': 'Jennifer',
  'last_name': 'Groß',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrerin (Deutsch, kath. Theologie)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 171265,
  'entity_type': 'politician',
  'label': 'Carmen Krüger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/171265',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carmen-kruger',
  'first_name': 'Carmen',
  'last_name': 'Krüger',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bäckerin',
  'residence': None,
  'occupation': 'MdL, Angestellte beim Landestourismusverband in Dresden',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170913,
  'entity_type': 'politician',
  'label': 'Jessica Weller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170913',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jessica-weller',
  'first_name': 'Jessica',
  'last_name': 'Weller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirtin (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170325,
  'entity_type': 'politician',
  'label': 'Christiane Schenderlein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170325',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christiane-schenderlein',
  'first_name': 'Christiane',
  'last_name': 'Schenderlein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': None,
  'occupation': 'MdB, MdL',
  'statistic_questions': 11,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2523',
  'qid_wikidata': 'Q67796852',
  'field_title': 'Dr.'},
 {'id': 170184,
  'entity_type': 'politician',
  'label': 'Jochen Trautmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170184',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-trautmann',
  'first_name': 'Jochen',
  'last_name': 'Trautmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Steuerberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170183,
  'entity_type': 'politician',
  'label': 'Rosa Maria Haschke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170183',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rosa-maria-haschke',
  'first_name': 'Rosa Maria',
  'last_name': 'Haschke',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrerin',
  'residence': None,
  'occupation': 'Ortsteilbürgermeisterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170182,
  'entity_type': 'politician',
  'label': 'Stephan Tiesler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170182',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-tiesler',
  'first_name': 'Stephan',
  'last_name': 'Tiesler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Wirtschaftsinformatiker Univ.',
  'residence': None,
  'occupation': 'Energiewirtschaftlicher Mitarbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170181,
  'entity_type': 'politician',
  'label': 'Thomas Gottweiss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170181',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-gottweiss',
  'first_name': 'Thomas',
  'last_name': 'Gottweiss',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kommunikationswissenschaftler',
  'residence': None,
  'occupation': 'Bürgermeister',
  'statistic_questions': 3,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170180,
  'entity_type': 'politician',
  'label': 'Regina Polster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170180',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/regina-polster',
  'first_name': 'Regina',
  'last_name': 'Polster',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Volkswirt; Dr. rer. pol. (Wirtschaftsinformatik)',
  'residence': None,
  'occupation': 'Unternehmensberaterin, Professorin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170179,
  'entity_type': 'politician',
  'label': 'Dominik Kordon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170179',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dominik-kordon',
  'first_name': 'Dominik',
  'last_name': 'Kordon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatswissenschaftler (MA)',
  'residence': None,
  'occupation': 'Angestellter, Stadtrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170178,
  'entity_type': 'politician',
  'label': 'Niklas Waßmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170178',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niklas-wassmann',
  'first_name': 'Niklas',
  'last_name': 'Waßmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Abschluss Universtität Bayreuth Philosophie & Wirtschaft',
  'residence': None,
  'occupation': 'Mitarbeiter beim Bildungswerk der Thüringer Wirtschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170177,
  'entity_type': 'politician',
  'label': 'Rita Schmidtke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170177',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rita-schmidtke',
  'first_name': 'Rita',
  'last_name': 'Schmidtke',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170176,
  'entity_type': 'politician',
  'label': 'Hans-Georg Creutzburg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170176',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-georg-creutzburg',
  'first_name': 'Hans-Georg',
  'last_name': 'Creutzburg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftler, Master of Arts',
  'residence': None,
  'occupation': 'Wissenschaftlicher Mitarbeiter im Thüringer Landtag',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170175,
  'entity_type': 'politician',
  'label': 'Stefan Schard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170175',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-schard',
  'first_name': 'Stefan',
  'last_name': 'Schard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist (1. u. 2. Staatsex.) sowie Master "Kommunalwirtschaft" (FH)',
  'residence': None,
  'occupation': 'Hauptamtsleiter Stadtverwaltung Sondershausen',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170174,
  'entity_type': 'politician',
  'label': 'Silvana Schäffer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170174',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silvana-schaeffer',
  'first_name': 'Silvana',
  'last_name': 'Schäffer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politologin ',
  'residence': None,
  'occupation': 'Pädagogische Mitarbeiterin ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170173,
  'entity_type': 'politician',
  'label': 'Jane Croll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170173',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jane-croll',
  'first_name': 'Jane',
  'last_name': 'Croll',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Wellness- und Spamanagerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170172,
  'entity_type': 'politician',
  'label': 'Jonas Urbach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170172',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jonas-urbach',
  'first_name': 'Jonas',
  'last_name': 'Urbach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': None,
  'occupation': 'Bürgermeister in Anrode',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170171,
  'entity_type': 'politician',
  'label': 'Martin Henkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170171',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-henkel',
  'first_name': 'Martin',
  'last_name': 'Henkel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium Elektrotechnik/Nachrichtentechnik',
  'residence': None,
  'occupation': 'Bürgermeister der Stadt Geisa',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170170,
  'entity_type': 'politician',
  'label': 'Steffen Iffland',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170170',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-iffland',
  'first_name': 'Steffen',
  'last_name': 'Iffland',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Genealoge, Verleger, Heimatforscher, Stadtrat, Kreistagsmitglied',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 170169,
  'entity_type': 'politician',
  'label': 'Carolin Gerbothe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/170169',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carolin-gerbothe',
  'first_name': 'Carolin',
  'last_name': 'Gerbothe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Agrarwissenschaften, M. Sc. ',
  'residence': None,
  'occupation': ' Projektmitarbeiterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 169577,
  'entity_type': 'politician',
  'label': 'Cora Lesch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/169577',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cora-lesch',
  'first_name': 'Cora',
  'last_name': 'Lesch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 169546,
  'entity_type': 'politician',
  'label': 'Peter Lerch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/169546',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-lerch',
  'first_name': 'Peter',
  'last_name': 'Lerch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 169542,
  'entity_type': 'politician',
  'label': 'Stephanie Lohr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/169542',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephanie-lohr',
  'first_name': 'Stephanie',
  'last_name': 'Lohr',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Syndikusrechtsanwältin ',
  'residence': None,
  'occupation': 'Mitglied des Landtages ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168721,
  'entity_type': 'politician',
  'label': 'Wolfgang Bialas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168721',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-bialas',
  'first_name': 'Wolfgang',
  'last_name': 'Bialas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Bauingenieur',
  'residence': None,
  'occupation': 'Wahlkreisreferent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168720,
  'entity_type': 'politician',
  'label': 'Rüdiger Krause',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168720',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruediger-krause',
  'first_name': 'Rüdiger',
  'last_name': 'Krause',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bundespolizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168719,
  'entity_type': 'politician',
  'label': 'Julian Brüning',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julian-bruening',
  'first_name': 'Julian',
  'last_name': 'Brüning',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL, Vorsitzender der Jungen Union Brandenburg',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q67073310',
  'field_title': None},
 {'id': 168718,
  'entity_type': 'politician',
  'label': 'Sebastian Rick',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168718',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-rick',
  'first_name': 'Sebastian',
  'last_name': 'Rick',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Historiker',
  'residence': None,
  'occupation': 'Sachgebietsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168717,
  'entity_type': 'politician',
  'label': 'André Schaller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168717',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andre-schaller',
  'first_name': 'André',
  'last_name': 'Schaller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist, Diplom-Betriebswirt (FH)',
  'residence': None,
  'occupation': 'MdL, Rechtsanwalt (Zulassung „ruht“ z.Zt.)',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q67202987',
  'field_title': None},
 {'id': 168716,
  'entity_type': 'politician',
  'label': 'Jan-Peter Bündig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168716',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-peter-buendig',
  'first_name': 'Jan-Peter',
  'last_name': 'Bündig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Agraringenieur, Diplom-Verwaltungswirt',
  'residence': None,
  'occupation': 'Kriminaloberkommissar',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168715,
  'entity_type': 'politician',
  'label': 'Karin Lehmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168715',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-lehmann',
  'first_name': 'Karin',
  'last_name': 'Lehmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Geprüfte Sekretärin',
  'residence': None,
  'occupation': 'Geschäftsführerin des Kreissportbundes Oder-Spree e.V.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168714,
  'entity_type': 'politician',
  'label': 'Christian Schroeder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168714',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-schroeder-0',
  'first_name': 'Christian',
  'last_name': 'Schroeder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Fachberater im Außendienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168713,
  'entity_type': 'politician',
  'label': 'Robert Trebus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168713',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-trebus',
  'first_name': 'Robert',
  'last_name': 'Trebus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Chemieverfahrenstechniker',
  'residence': None,
  'occupation': 'Manager bei Panasonic',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168712,
  'entity_type': 'politician',
  'label': 'Felix Menzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168712',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-menzel',
  'first_name': 'Felix',
  'last_name': 'Menzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Arts in Projekt- und Prozessmanagement',
  'residence': None,
  'occupation': 'IT-Sicherheitsbeauftragter für den Landkreis Teltow-Fläming',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168711,
  'entity_type': 'politician',
  'label': 'Clemens Viehrig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168711',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/clemens-viehrig',
  'first_name': 'Clemens',
  'last_name': 'Viehrig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Pädagoge, Master of Arts (BWL)',
  'residence': None,
  'occupation': 'Referent im Bundesministerium für Verkehr und digitale Infrastruktur (BMVI)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168710,
  'entity_type': 'politician',
  'label': 'Anja Schmollack',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-schmollack',
  'first_name': 'Anja',
  'last_name': 'Schmollack',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsjuristin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168709,
  'entity_type': 'politician',
  'label': 'Franz Herbert Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168709',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/franz-herbert-schaefer',
  'first_name': 'Franz Herbert',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Personaldezernent beim Brandenburgischen Oberlandesgericht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168708,
  'entity_type': 'politician',
  'label': 'Carsten Bruch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168708',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-bruch',
  'first_name': 'Carsten',
  'last_name': 'Bruch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Informationstechniker-Meister',
  'residence': None,
  'occupation': 'Geschäftsführer bei EP: Werner GmbH, ehrenamtlicher Bürgermeister der Stadt Biesenthal',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168707,
  'entity_type': 'politician',
  'label': 'Daniel Sauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168707',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-sauer',
  'first_name': 'Daniel',
  'last_name': 'Sauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'stellvertretender Personalratsvorsitzender der Fachhochschule der Polizei in Oranienburg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168706,
  'entity_type': 'politician',
  'label': 'Silke Nessing',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168706',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-nessing',
  'first_name': 'Silke',
  'last_name': 'Nessing',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Pädagogin, Master of Arts Umwelt und Bildung',
  'residence': None,
  'occupation': 'Kitaleiterin ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168705,
  'entity_type': 'politician',
  'label': 'Annett Polle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168705',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annett-polle',
  'first_name': 'Annett',
  'last_name': 'Polle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkauffrau',
  'residence': None,
  'occupation': 'Geschäftsstellenleitung der Mittelbrandenburgischen Sparkasse in Fürstenberg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168704,
  'entity_type': 'politician',
  'label': 'Nicole Walter-Mundt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168704',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicole-walter-mundt',
  'first_name': 'Nicole',
  'last_name': 'Walter-Mundt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q84210168',
  'field_title': None},
 {'id': 168703,
  'entity_type': 'politician',
  'label': 'Roger Pautz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roger-pautz',
  'first_name': 'Roger',
  'last_name': 'Pautz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'B. SC. Betriebswirtschaftslehre',
  'residence': None,
  'occupation': 'Kaufmännischer Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168702,
  'entity_type': 'politician',
  'label': 'Marcus Welzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168702',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcus-welzel',
  'first_name': 'Marcus',
  'last_name': 'Welzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Krankenpfleger',
  'residence': None,
  'occupation': 'Pflegedirektor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168366,
  'entity_type': 'politician',
  'label': 'Matthias Reuter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168366',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-reuter',
  'first_name': 'Matthias',
  'last_name': 'Reuter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Gerontologe',
  'residence': None,
  'occupation': 'Sozialplaner & Pflegekoordinator im Landkreis Görlitz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168365,
  'entity_type': 'politician',
  'label': 'Tilmann Havenstein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168365',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tilmann-havenstein',
  'first_name': 'Tilmann',
  'last_name': 'Havenstein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungsfachangestellter',
  'residence': None,
  'occupation': 'Büroleiter des MdL Lothar Bienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168364,
  'entity_type': 'politician',
  'label': 'Mathias Kockert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168364',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mathias-kockert',
  'first_name': 'Mathias',
  'last_name': 'Kockert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'diplomierter Bankbetriebswirt',
  'residence': None,
  'occupation': 'Vorstandsreferent bei der Ostsächsischen Sparkasse Dresden, Stadtrat in Wittichenau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168363,
  'entity_type': 'politician',
  'label': 'Barbara Klepsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168363',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbara-klepsch',
  'first_name': 'Barbara',
  'last_name': 'Klepsch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungs-Betriebswirtin',
  'residence': None,
  'occupation': 'MdL, Staatsministerin für Kultur und Tourismus',
  'statistic_questions': 19,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168362,
  'entity_type': 'politician',
  'label': 'Gunter Thiele',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168362',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gunter-thiele',
  'first_name': 'Gunter',
  'last_name': 'Thiele',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur',
  'residence': None,
  'occupation': 'Geschäftsführer, Verkehrsplaner',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168361,
  'entity_type': 'politician',
  'label': 'Bernd Merbitz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168361',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-merbitz',
  'first_name': 'Bernd',
  'last_name': 'Merbitz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Staatswissenschaftler',
  'residence': None,
  'occupation': 'Landespolizeipräsident a.D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168360,
  'entity_type': 'politician',
  'label': 'Michael Weickert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168360',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-weickert',
  'first_name': 'Michael',
  'last_name': 'Weickert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168359,
  'entity_type': 'politician',
  'label': 'Karsten Albrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168359',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karsten-albrecht',
  'first_name': 'Karsten',
  'last_name': 'Albrecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ing. (FH)',
  'residence': None,
  'occupation': 'selbstständiger Beratungsingenieur, Stadtrat Leipzig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168358,
  'entity_type': 'politician',
  'label': 'Kay Ritter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168358',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kay-ritter',
  'first_name': 'Kay',
  'last_name': 'Ritter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168357,
  'entity_type': 'politician',
  'label': 'Rudolf Lehle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168357',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rudolf-lehle',
  'first_name': 'Rudolf',
  'last_name': 'Lehle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Nervenarzt, Psychotherapie',
  'residence': None,
  'occupation': 'Stadtrat, Landtagskandidatur, Öffentlichkeitsarbeit',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168356,
  'entity_type': 'politician',
  'label': 'Susan Leithoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168356',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susan-leithoff',
  'first_name': 'Susan',
  'last_name': 'Leithoff',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': 4,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168355,
  'entity_type': 'politician',
  'label': 'Falk Haude',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168355',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/falk-haude',
  'first_name': 'Falk',
  'last_name': 'Haude',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Historiker (B.A.) / Werkzeugmechaniker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 168354,
  'entity_type': 'politician',
  'label': 'Eric Dietrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/168354',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eric-dietrich',
  'first_name': 'Eric',
  'last_name': 'Dietrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur für Informationstechnik',
  'residence': None,
  'occupation': 'IT-Koordinator',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 167234,
  'entity_type': 'politician',
  'label': 'Michael Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/167234',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-wagner',
  'first_name': 'Michael',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166656,
  'entity_type': 'politician',
  'label': 'Alexander Becker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166656',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-becker',
  'first_name': 'Alexander',
  'last_name': 'Becker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64227887',
  'field_title': 'Dr.'},
 {'id': 166056,
  'entity_type': 'politician',
  'label': 'Ute Pesara-Krebs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166056',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ute-pesara-krebs',
  'first_name': 'Ute',
  'last_name': 'Pesara-Krebs',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffrau',
  'residence': None,
  'occupation': 'Museumsangestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166055,
  'entity_type': 'politician',
  'label': 'Waldemar Seidler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166055',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/waldemar-seidler',
  'first_name': 'Waldemar',
  'last_name': 'Seidler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Mitglied Beirat Woltmershausen, Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166054,
  'entity_type': 'politician',
  'label': 'Rüdiger Leefers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166054',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruediger-leefers',
  'first_name': 'Rüdiger',
  'last_name': 'Leefers',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt',
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166053,
  'entity_type': 'politician',
  'label': 'Thorsten Raschen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166053',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thorsten-raschen',
  'first_name': 'Thorsten',
  'last_name': 'Raschen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sachgebietsleiter für Echtzeit und Fahrgastinformationen',
  'residence': 'Bremerhaven',
  'occupation': 'MdBB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64501333',
  'field_title': None},
 {'id': 166052,
  'entity_type': 'politician',
  'label': 'Michael Fillié',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166052',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-fillie',
  'first_name': 'Michael',
  'last_name': 'Fillié',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dr. rer. pol; Diplom-Kaufmann, gelernter Speditionskaufmann',
  'residence': None,
  'occupation': 'Geschäftsführender Gesellschafter/Partner einer Unternehmensberatung, Auditor für das audit berufundfamilie',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166051,
  'entity_type': 'politician',
  'label': 'Philipp van Gels',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166051',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-van-gels',
  'first_name': 'Philipp',
  'last_name': 'van Gels',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166048,
  'entity_type': 'politician',
  'label': 'Klaus-Otto Puppa',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166048',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-otto-puppa',
  'first_name': 'Klaus-Otto',
  'last_name': 'Puppa',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166047,
  'entity_type': 'politician',
  'label': 'Michael Keller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166047',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-keller-0',
  'first_name': 'Michael',
  'last_name': 'Keller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdBB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64416355',
  'field_title': None},
 {'id': 166045,
  'entity_type': 'politician',
  'label': 'Yvonne Averwerser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166045',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/yvonne-averwerser',
  'first_name': 'Yvonne',
  'last_name': 'Averwerser',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Bremen',
  'occupation': 'MdBB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64398275',
  'field_title': None},
 {'id': 166044,
  'entity_type': 'politician',
  'label': 'Ole Lindemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166044',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ole-lindemann',
  'first_name': 'Ole',
  'last_name': 'Lindemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Bremen',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166043,
  'entity_type': 'politician',
  'label': 'Melanie Morawietz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166043',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-morawietz',
  'first_name': 'Melanie',
  'last_name': 'Morawietz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdBB',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q112065219',
  'field_title': None},
 {'id': 166042,
  'entity_type': 'politician',
  'label': 'Miriam Benz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166042',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/miriam-benz',
  'first_name': 'Miriam',
  'last_name': 'Benz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166041,
  'entity_type': 'politician',
  'label': 'Ralf Goldmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166041',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-goldmann',
  'first_name': 'Ralf',
  'last_name': 'Goldmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166040,
  'entity_type': 'politician',
  'label': 'Lutz Jacob',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166040',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lutz-jacob',
  'first_name': 'Lutz',
  'last_name': 'Jacob',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166039,
  'entity_type': 'politician',
  'label': 'Holger Saathoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166039',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-saathoff',
  'first_name': 'Holger',
  'last_name': 'Saathoff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Fachbauleiter',
  'residence': None,
  'occupation': 'Im Ruhestand',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166038,
  'entity_type': 'politician',
  'label': 'Christoph Weiss',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166038',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-weiss',
  'first_name': 'Christoph',
  'last_name': 'Weiss',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'MdBB, Geschäftsführender Gesellschafter der BEGO Unternehmensgruppe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64501391',
  'field_title': None},
 {'id': 166037,
  'entity_type': 'politician',
  'label': 'Carsten Meyer-Heder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166037',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-meyer-heder',
  'first_name': 'Carsten',
  'last_name': 'Meyer-Heder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Wirtschaftswissenschaften',
  'residence': None,
  'occupation': 'MdBB',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q59276244',
  'field_title': None},
 {'id': 166036,
  'entity_type': 'politician',
  'label': 'Marina Kargoscha',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166036',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marina-kargoscha',
  'first_name': 'Marina',
  'last_name': 'Kargoscha',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166035,
  'entity_type': 'politician',
  'label': 'Marco Butzkus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166035',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-butzkus',
  'first_name': 'Marco',
  'last_name': 'Butzkus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166034,
  'entity_type': 'politician',
  'label': 'Michael Teetzen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166034',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-teetzen',
  'first_name': 'Michael',
  'last_name': 'Teetzen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166033,
  'entity_type': 'politician',
  'label': 'Kerstin Eckardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166033',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-eckardt',
  'first_name': 'Kerstin',
  'last_name': 'Eckardt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkauffrau',
  'residence': 'Bremen',
  'occupation': 'Kaufmännische Angestellte im Ingenieurbüro',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166032,
  'entity_type': 'politician',
  'label': 'Jörg Findeisen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166032',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-findeisen',
  'first_name': 'Jörg',
  'last_name': 'Findeisen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Ingenieur',
  'residence': None,
  'occupation': 'Maschinenbauingenieur Luft- und Raumfahrt und Betriebsrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166031,
  'entity_type': 'politician',
  'label': 'Christian Kohl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166031',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-kohl-0',
  'first_name': 'Christian',
  'last_name': 'Kohl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166030,
  'entity_type': 'politician',
  'label': 'Hans-Peter Volkmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166030',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-peter-volkmann',
  'first_name': 'Hans-Peter',
  'last_name': 'Volkmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Arzt für Innere Medizin',
  'residence': None,
  'occupation': 'Selbständig; Ärztlicher Gutachter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166029,
  'entity_type': 'politician',
  'label': 'Hela Dumas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166029',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hela-dumas',
  'first_name': 'Hela',
  'last_name': 'Dumas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Juristin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166028,
  'entity_type': 'politician',
  'label': 'Günther Flißikowski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166028',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guenther-flissikowski',
  'first_name': 'Günther',
  'last_name': 'Flißikowski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Polizeivollzugsbeamten',
  'residence': None,
  'occupation': 'MdBB',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64501339',
  'field_title': None},
 {'id': 166027,
  'entity_type': 'politician',
  'label': 'Ernst Schroeder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166027',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ernst-schroeder',
  'first_name': 'Ernst',
  'last_name': 'Schroeder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166026,
  'entity_type': 'politician',
  'label': 'Florian Sieglin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166026',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-sieglin',
  'first_name': 'Florian',
  'last_name': 'Sieglin',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studierter Betriebswirt',
  'residence': None,
  'occupation': 'Kaufm. Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166025,
  'entity_type': 'politician',
  'label': 'Dirk Paulmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166025',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dirk-paulmann',
  'first_name': 'Dirk',
  'last_name': 'Paulmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Politologe',
  'residence': None,
  'occupation': 'selbständiger Schiffsmakler',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166024,
  'entity_type': 'politician',
  'label': 'Dieter Neuhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166024',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dieter-neuhoff',
  'first_name': 'Dieter',
  'last_name': 'Neuhoff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Fachinformatiker',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166023,
  'entity_type': 'politician',
  'label': 'Claus Gülke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166023',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claus-guelke',
  'first_name': 'Claus',
  'last_name': 'Gülke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankbetriebswirt',
  'residence': 'Bremen',
  'occupation': 'Bankbetriebswirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 166012,
  'entity_type': 'politician',
  'label': 'Uwe Janko',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/166012',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-janko',
  'first_name': 'Uwe',
  'last_name': 'Janko',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur (FH) Luft und Raumfahrt, Betriebswirtschaft',
  'residence': 'Renchen/ Baden',
  'occupation': 'Diplom Ing. ( Fh)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165111,
  'entity_type': 'politician',
  'label': 'Birgit Scholz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165111',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-scholz',
  'first_name': 'Birgit',
  'last_name': 'Scholz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165110,
  'entity_type': 'politician',
  'label': 'Mathias Hasecke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165110',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mathias-hasecke',
  'first_name': 'Mathias',
  'last_name': 'Hasecke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Selbständig Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165109,
  'entity_type': 'politician',
  'label': 'Oliver Dreute',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165109',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-dreute',
  'first_name': 'Oliver',
  'last_name': 'Dreute',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechtswissenschaften',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165108,
  'entity_type': 'politician',
  'label': 'Lars Vondenhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165108',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-vondenhoff',
  'first_name': 'Lars',
  'last_name': 'Vondenhoff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Reisebürogeschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165107,
  'entity_type': 'politician',
  'label': 'Madina Assaeva',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165107',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/madina-assaeva',
  'first_name': 'Madina',
  'last_name': 'Assaeva',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Wahlkreismitarbeiterin eines Landtagsabgeordneten in Rendsburg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165106,
  'entity_type': 'politician',
  'label': 'Holger Watter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165106',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-watter',
  'first_name': 'Holger',
  'last_name': 'Watter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': None,
  'occupation': 'Professor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165105,
  'entity_type': 'politician',
  'label': 'Klaus-Peter Lucht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165105',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-peter-lucht',
  'first_name': 'Klaus-Peter',
  'last_name': 'Lucht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165104,
  'entity_type': 'politician',
  'label': 'Kerstin Schröder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165104',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-schroeder',
  'first_name': 'Kerstin',
  'last_name': 'Schröder',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Agrarwissenschaften, M.Sc.',
  'residence': None,
  'occupation': 'Wissenschaftliche Referentin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165103,
  'entity_type': 'politician',
  'label': 'Lars Kuhlmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165103',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lars-kuhlmann',
  'first_name': 'Lars',
  'last_name': 'Kuhlmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165102,
  'entity_type': 'politician',
  'label': 'Melanie Gottwald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165102',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-gottwald',
  'first_name': 'Melanie',
  'last_name': 'Gottwald',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165101,
  'entity_type': 'politician',
  'label': 'Karolin Reinhold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165101',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karolin-reinhold',
  'first_name': 'Karolin',
  'last_name': 'Reinhold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165100,
  'entity_type': 'politician',
  'label': 'Kerstin Godenrath',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165100',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-godenrath',
  'first_name': 'Kerstin',
  'last_name': 'Godenrath',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Arts in General Management',
  'residence': 'Halle',
  'occupation': 'Abteilungsleiterin bei der Stadtverwaltung Halle (Saale)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165099,
  'entity_type': 'politician',
  'label': 'Heinz Ulrich Reusch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165099',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-ulrich-reusch',
  'first_name': 'Heinz Ulrich',
  'last_name': 'Reusch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165098,
  'entity_type': 'politician',
  'label': 'Jens Hinkelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165098',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-hinkelmann',
  'first_name': 'Jens',
  'last_name': 'Hinkelmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165097,
  'entity_type': 'politician',
  'label': 'Marie Sophie Seyfert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165097',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marie-sophie-seyfert',
  'first_name': 'Marie Sophie',
  'last_name': 'Seyfert',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165096,
  'entity_type': 'politician',
  'label': 'Agata Reichel-Tomczak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165096',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/agata-reichel-tomczak',
  'first_name': 'Agata',
  'last_name': 'Reichel-Tomczak',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'MBA, Master of Business Administration',
  'residence': None,
  'occupation': 'Geschäftsführerin, Internationale Strategieberatung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165095,
  'entity_type': 'politician',
  'label': 'Derya Schunck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165095',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/derya-schunck',
  'first_name': 'Derya',
  'last_name': 'Schunck',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165094,
  'entity_type': 'politician',
  'label': 'Anna Margaretha Echterhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165094',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anna-margaretha-echterhoff',
  'first_name': 'Anna Margaretha',
  'last_name': 'Echterhoff',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165093,
  'entity_type': 'politician',
  'label': 'Michaela Klauck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165093',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michaela-klauck',
  'first_name': 'Michaela',
  'last_name': 'Klauck',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165092,
  'entity_type': 'politician',
  'label': 'Matthias Fuchs',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165092',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-fuchs',
  'first_name': 'Matthias',
  'last_name': 'Fuchs',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165090,
  'entity_type': 'politician',
  'label': 'Melis Aydin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165090',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melis-aydin',
  'first_name': 'Melis',
  'last_name': 'Aydin',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165089,
  'entity_type': 'politician',
  'label': 'Pascal Rambaud',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165089',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/pascal-rambaud',
  'first_name': 'Pascal',
  'last_name': 'Rambaud',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Theologe',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165088,
  'entity_type': 'politician',
  'label': 'Kerstin Backes-Ternig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165088',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-backes-ternig',
  'first_name': 'Kerstin',
  'last_name': 'Backes-Ternig',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Realschullehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165087,
  'entity_type': 'politician',
  'label': 'Manfred Maurer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165087',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-maurer',
  'first_name': 'Manfred',
  'last_name': 'Maurer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165086,
  'entity_type': 'politician',
  'label': 'Helmut Zimmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165086',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helmut-zimmer',
  'first_name': 'Helmut',
  'last_name': 'Zimmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165085,
  'entity_type': 'politician',
  'label': 'Elisabeth Petgen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165085',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elisabeth-petgen',
  'first_name': 'Elisabeth',
  'last_name': 'Petgen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bankkauffrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165084,
  'entity_type': 'politician',
  'label': 'Thomas Scheppe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165084',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-scheppe',
  'first_name': 'Thomas',
  'last_name': 'Scheppe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165083,
  'entity_type': 'politician',
  'label': 'Charmaine Beyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165083',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/charmaine-beyer',
  'first_name': 'Charmaine',
  'last_name': 'Beyer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Finanzwirtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165082,
  'entity_type': 'politician',
  'label': 'Thorsten Wollscheid',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165082',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thorsten-wollscheid',
  'first_name': 'Thorsten',
  'last_name': 'Wollscheid',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Trier',
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165081,
  'entity_type': 'politician',
  'label': 'Alexander Schröder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165081',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-schroeder',
  'first_name': 'Alexander',
  'last_name': 'Schröder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165080,
  'entity_type': 'politician',
  'label': 'Fred Holger Ludwig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165080',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fred-holger-ludwig',
  'first_name': 'Fred Holger',
  'last_name': 'Ludwig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165079,
  'entity_type': 'politician',
  'label': 'Maximilian Ziegler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165079',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-ziegler',
  'first_name': 'Maximilian',
  'last_name': 'Ziegler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'B.Sc. Business Administration',
  'residence': None,
  'occupation': 'Business Development Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165078,
  'entity_type': 'politician',
  'label': 'Gabriele Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165078',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-mueller',
  'first_name': 'Gabriele',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'MTA',
  'residence': None,
  'occupation': 'MTA',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165077,
  'entity_type': 'politician',
  'label': 'Anja Esch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165077',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-esch',
  'first_name': 'Anja',
  'last_name': 'Esch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Heilpädagogin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165076,
  'entity_type': 'politician',
  'label': 'Adrian Nitsche',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165076',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adrian-nitsche',
  'first_name': 'Adrian',
  'last_name': 'Nitsche',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165075,
  'entity_type': 'politician',
  'label': 'Andreas Illenseer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165075',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-illenseer',
  'first_name': 'Andreas',
  'last_name': 'Illenseer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165074,
  'entity_type': 'politician',
  'label': 'David Wollweber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165074',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/david-wollweber',
  'first_name': 'David',
  'last_name': 'Wollweber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165073,
  'entity_type': 'politician',
  'label': 'Diana Hofmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165073',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/diana-hofmann',
  'first_name': 'Diana',
  'last_name': 'Hofmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankfachwirtin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165072,
  'entity_type': 'politician',
  'label': 'Malte Kilian',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165072',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/malte-kilian',
  'first_name': 'Malte',
  'last_name': 'Kilian',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165071,
  'entity_type': 'politician',
  'label': 'Sabrina Mokulys',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165071',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabrina-mokulys',
  'first_name': 'Sabrina',
  'last_name': 'Mokulys',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165070,
  'entity_type': 'politician',
  'label': 'Annette Littmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165070',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annette-littmann',
  'first_name': 'Annette',
  'last_name': 'Littmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Kauffrau',
  'residence': None,
  'occupation': 'IR-Manager',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165069,
  'entity_type': 'politician',
  'label': 'Uwe Pakendorf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165069',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-pakendorf',
  'first_name': 'Uwe',
  'last_name': 'Pakendorf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165068,
  'entity_type': 'politician',
  'label': 'Marten Stühring',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165068',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marten-stuehring',
  'first_name': 'Marten',
  'last_name': 'Stühring',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165067,
  'entity_type': 'politician',
  'label': 'Mario Pschunder',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165067',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mario-pschunder',
  'first_name': 'Mario',
  'last_name': 'Pschunder',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Head of IT',
  'residence': None,
  'occupation': 'Leitender Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165065,
  'entity_type': 'politician',
  'label': 'Kerstin Lorentsen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165065',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-lorentsen',
  'first_name': 'Kerstin',
  'last_name': 'Lorentsen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165064,
  'entity_type': 'politician',
  'label': 'Hendrik Maas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165064',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hendrik-maas',
  'first_name': 'Hendrik',
  'last_name': 'Maas',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehramtsstudent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165063,
  'entity_type': 'politician',
  'label': 'Susanne Winkelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165063',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-winkelmann',
  'first_name': 'Susanne',
  'last_name': 'Winkelmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165062,
  'entity_type': 'politician',
  'label': 'Christoph Hemmerle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165062',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-hemmerle',
  'first_name': 'Christoph',
  'last_name': 'Hemmerle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165061,
  'entity_type': 'politician',
  'label': 'Jörn Lohmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165061',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joern-lohmann',
  'first_name': 'Jörn',
  'last_name': 'Lohmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student der Rechtswissenschaften',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165060,
  'entity_type': 'politician',
  'label': 'Maren von der Heide',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165060',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maren-von-der-heide',
  'first_name': 'Maren',
  'last_name': 'von der Heide',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Leiterin Personalmanagement Kreissparkasse',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165059,
  'entity_type': 'politician',
  'label': 'Stephan Kawemeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165059',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-kawemeyer',
  'first_name': 'Stephan',
  'last_name': 'Kawemeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165058,
  'entity_type': 'politician',
  'label': 'Sonja Jamme',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165058',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-jamme',
  'first_name': 'Sonja',
  'last_name': 'Jamme',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Ratsmitglied der Hansestadt Lüneburg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165057,
  'entity_type': 'politician',
  'label': 'Christian Pöhling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165057',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-pohling',
  'first_name': 'Christian',
  'last_name': 'Pöhling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165056,
  'entity_type': 'politician',
  'label': 'Fabian Heine',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165056',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fabian-heine',
  'first_name': 'Fabian',
  'last_name': 'Heine',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Jurist',
  'residence': None,
  'occupation': 'Rechtsreferendar',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165055,
  'entity_type': 'politician',
  'label': 'Cornell-Anette Babendererde',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165055',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornell-anette-babendererde',
  'first_name': 'Cornell-Anette',
  'last_name': 'Babendererde',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165054,
  'entity_type': 'politician',
  'label': 'Christel Bartelmei',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165054',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christel-bartelmei',
  'first_name': 'Christel',
  'last_name': 'Bartelmei',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165053,
  'entity_type': 'politician',
  'label': 'Ulf-Fabian Heinrichsdorff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165053',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulf-fabian-heinrichsdorff',
  'first_name': 'Ulf-Fabian',
  'last_name': 'Heinrichsdorff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Wirt. Ing.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165052,
  'entity_type': 'politician',
  'label': 'Keti Langrehr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165052',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/keti-langrehr',
  'first_name': 'Keti',
  'last_name': 'Langrehr',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165051,
  'entity_type': 'politician',
  'label': 'Martina Sharman',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165051',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martina-sharman',
  'first_name': 'Martina',
  'last_name': 'Sharman',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165050,
  'entity_type': 'politician',
  'label': 'Lena Düpont',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165050',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lena-duepont',
  'first_name': 'Lena',
  'last_name': 'Düpont',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Politikwissenschaften und christliche Publizistik, MBA',
  'residence': None,
  'occupation': 'MdEP',
  'statistic_questions': 18,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q64068338',
  'field_title': None},
 {'id': 165049,
  'entity_type': 'politician',
  'label': 'Simone Borchardt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165049',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/simone-borchardt',
  'first_name': 'Simone',
  'last_name': 'Borchardt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Health Business  Administration',
  'residence': 'Warnow',
  'occupation': 'Geschäftsbereichsleiterin  Pflege beim IB Nord e. V. / Beauftragte der Geschäftsführung für die Pflege- und Wiedereingliederung gGmbH',
  'statistic_questions': 17,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': '2343',
  'qid_wikidata': 'Q108752900',
  'field_title': None},
 {'id': 165048,
  'entity_type': 'politician',
  'label': 'Wendy Ruddies',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165048',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wendy-ruddies',
  'first_name': 'Wendy',
  'last_name': 'Ruddies',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165047,
  'entity_type': 'politician',
  'label': 'Peter Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165047',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-schaefer',
  'first_name': 'Peter',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist, Bankkaufmann',
  'residence': None,
  'occupation': 'Rechtsanwalt, Fachanwalt für Steuerrecht, Syndikusrechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165046,
  'entity_type': 'politician',
  'label': 'Hans Jürgen Strempel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165046',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-juergen-strempel',
  'first_name': 'Hans Jürgen',
  'last_name': 'Strempel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'AGM Consultant',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165045,
  'entity_type': 'politician',
  'label': 'Jana Edelmann-Rauthe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165045',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jana-edelmann-rauthe',
  'first_name': 'Jana',
  'last_name': 'Edelmann-Rauthe',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165044,
  'entity_type': 'politician',
  'label': 'Heinrich Martin Hußmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165044',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-martin-hussmann',
  'first_name': 'Heinrich Martin',
  'last_name': 'Hußmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165043,
  'entity_type': 'politician',
  'label': 'Sabine Bergold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165043',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-bergold',
  'first_name': 'Sabine',
  'last_name': 'Bergold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165042,
  'entity_type': 'politician',
  'label': 'Achim Carius',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165042',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/achim-carius',
  'first_name': 'Achim',
  'last_name': 'Carius',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165041,
  'entity_type': 'politician',
  'label': 'Karin Tanz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165041',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-tanz',
  'first_name': 'Karin',
  'last_name': 'Tanz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165040,
  'entity_type': 'politician',
  'label': 'Johannes Volkmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165040',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-volkmann',
  'first_name': 'Johannes',
  'last_name': 'Volkmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165039,
  'entity_type': 'politician',
  'label': 'Anke Kettenuß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165039',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anke-kettenuss',
  'first_name': 'Anke',
  'last_name': 'Kettenuß',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165038,
  'entity_type': 'politician',
  'label': 'Birgit Richtberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165038',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-richtberg',
  'first_name': 'Birgit',
  'last_name': 'Richtberg',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ing. agr.',
  'residence': None,
  'occupation': 'Bürgermeisterin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165037,
  'entity_type': 'politician',
  'label': 'Akash Jonny Kumar',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165037',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/akash-jonny-kumar',
  'first_name': 'Akash Jonny',
  'last_name': 'Kumar',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165036,
  'entity_type': 'politician',
  'label': 'Alexander Beer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165036',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-beer',
  'first_name': 'Alexander',
  'last_name': 'Beer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165035,
  'entity_type': 'politician',
  'label': 'Theresa Neumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165035',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/theresa-neumann',
  'first_name': 'Theresa',
  'last_name': 'Neumann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165034,
  'entity_type': 'politician',
  'label': 'Akop Voskanian',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165034',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/akop-voskanian',
  'first_name': 'Akop',
  'last_name': 'Voskanian',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165033,
  'entity_type': 'politician',
  'label': 'Anne Franziska Jähn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165033',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-franziska-jahn',
  'first_name': 'Anne Franziska',
  'last_name': 'Jähn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165031,
  'entity_type': 'politician',
  'label': 'Niclas Heins',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165031',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/niclas-heins',
  'first_name': 'Niclas',
  'last_name': 'Heins',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1994,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufmännischer Angestellter, Prokurist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165030,
  'entity_type': 'politician',
  'label': 'Anke Frieling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165030',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anke-frieling',
  'first_name': 'Anke',
  'last_name': 'Frieling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtschaftslehre',
  'residence': None,
  'occupation': 'MdHB, Dipl. Kauffrau, Projektleiterin der Gesundheitswirtschaft',
  'statistic_questions': 11,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165029,
  'entity_type': 'politician',
  'label': 'Alexandra Freitag',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165029',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-freitag',
  'first_name': 'Alexandra',
  'last_name': 'Freitag',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Lehrerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165028,
  'entity_type': 'politician',
  'label': 'Natalie Olejniczak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165028',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalie-olejniczak',
  'first_name': 'Natalie',
  'last_name': 'Olejniczak',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165027,
  'entity_type': 'politician',
  'label': 'Salim Bopp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165027',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/salim-bopp',
  'first_name': 'Salim',
  'last_name': 'Bopp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165026,
  'entity_type': 'politician',
  'label': 'Tim Haga',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165026',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-haga',
  'first_name': 'Tim',
  'last_name': 'Haga',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Mathematiker',
  'residence': None,
  'occupation': 'Universitätslektor',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165025,
  'entity_type': 'politician',
  'label': 'Mathias Blank',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165025',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mathias-blank',
  'first_name': 'Mathias',
  'last_name': 'Blank',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165024,
  'entity_type': 'politician',
  'label': 'Ulrich Thießen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165024',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrich-thiessen',
  'first_name': 'Ulrich',
  'last_name': 'Thießen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dr. rer. pol., Dipl. Volkswirt',
  'residence': None,
  'occupation': 'International Coorperation Adviser, Delegation der Europäischen Union',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165023,
  'entity_type': 'politician',
  'label': 'Sebastian Steinert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165023',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sebastian-steinert',
  'first_name': 'Sebastian',
  'last_name': 'Steinert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1999,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Student der Rechtswissenschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165022,
  'entity_type': 'politician',
  'label': 'Steffen Helbing',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165022',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-helbing',
  'first_name': 'Steffen',
  'last_name': 'Helbing',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165021,
  'entity_type': 'politician',
  'label': 'Katharina Trump',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165021',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/katharina-trump',
  'first_name': 'Katharina',
  'last_name': 'Trump',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165020,
  'entity_type': 'politician',
  'label': 'Beate Roll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165020',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beate-roll',
  'first_name': 'Beate',
  'last_name': 'Roll',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtin des Handwerks',
  'residence': None,
  'occupation': 'Unternehmerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165019,
  'entity_type': 'politician',
  'label': 'Susanne Zels',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165019',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-zels',
  'first_name': 'Susanne',
  'last_name': 'Zels',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Politologin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165018,
  'entity_type': 'politician',
  'label': 'Carsten Spallek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165018',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-spallek',
  'first_name': 'Carsten',
  'last_name': 'Spallek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165017,
  'entity_type': 'politician',
  'label': 'Peter Olszewski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165017',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-olszewski',
  'first_name': 'Peter',
  'last_name': 'Olszewski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ingenieur Elektro- u. Informationstechnik',
  'residence': None,
  'occupation': 'Ingenieur Elektronik- u. Softwareentwicklung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165016,
  'entity_type': 'politician',
  'label': 'Jan-Philipp Scheu',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165016',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-philipp-scheu',
  'first_name': 'Jan-Philipp',
  'last_name': 'Scheu',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankfachwirt (SBW)',
  'residence': None,
  'occupation': 'Referent eines Bundestagsabgeordneten',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165015,
  'entity_type': 'politician',
  'label': 'Steffen Straube-Kögler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165015',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-straube-kogler',
  'first_name': 'Steffen',
  'last_name': 'Straube-Kögler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165014,
  'entity_type': 'politician',
  'label': 'Alexandra Sauter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165014',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-sauter',
  'first_name': 'Alexandra',
  'last_name': 'Sauter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'International Business Development, M.A.',
  'residence': None,
  'occupation': 'Assistentin der Geschäftsleitung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165013,
  'entity_type': 'politician',
  'label': 'Isabel Pfeil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165013',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabel-pfeil',
  'first_name': 'Isabel',
  'last_name': 'Pfeil',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1996,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165012,
  'entity_type': 'politician',
  'label': 'Manuela Raichle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165012',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manuela-raichle',
  'first_name': 'Manuela',
  'last_name': 'Raichle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165011,
  'entity_type': 'politician',
  'label': 'Rita Hafner-Degen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165011',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rita-hafner-degen',
  'first_name': 'Rita',
  'last_name': 'Hafner-Degen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165010,
  'entity_type': 'politician',
  'label': 'Markus Meyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165010',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-meyer-0',
  'first_name': 'Markus',
  'last_name': 'Meyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165009,
  'entity_type': 'politician',
  'label': 'Matteo Hemminger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165009',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matteo-hemminger',
  'first_name': 'Matteo',
  'last_name': 'Hemminger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165008,
  'entity_type': 'politician',
  'label': 'Agnès Thuault-Pfahler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165008',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/agnes-thuault-pfahler',
  'first_name': 'Agnès',
  'last_name': 'Thuault-Pfahler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165007,
  'entity_type': 'politician',
  'label': 'Sonja Grässle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165007',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sonja-graessle',
  'first_name': 'Sonja',
  'last_name': 'Grässle',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165006,
  'entity_type': 'politician',
  'label': 'Heide Pick',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165006',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heide-pick',
  'first_name': 'Heide',
  'last_name': 'Pick',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Freie Journalistin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165005,
  'entity_type': 'politician',
  'label': 'Ruth Baumann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165005',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruth-baumann',
  'first_name': 'Ruth',
  'last_name': 'Baumann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 165004,
  'entity_type': 'politician',
  'label': 'Moritz Oppelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/165004',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/moritz-oppelt',
  'first_name': 'Moritz',
  'last_name': 'Oppelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Neckargemünd',
  'occupation': 'Oberregierungsrat in der Finanzverwaltung Baden-Württemberg',
  'statistic_questions': 6,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': '2489',
  'qid_wikidata': 'Q108757782',
  'field_title': None},
 {'id': 163786,
  'entity_type': 'politician',
  'label': 'Isabell Huber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/163786',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/isabell-huber',
  'first_name': 'Isabell',
  'last_name': 'Huber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Arts - Public Management',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 7,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q60691760',
  'field_title': None},
 {'id': 163482,
  'entity_type': 'politician',
  'label': 'Thadäus König',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/163482',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thadaeus-koenig',
  'first_name': 'Thadäus',
  'last_name': 'König',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 161656,
  'entity_type': 'politician',
  'label': 'Jörg Markert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/161656',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-markert',
  'first_name': 'Jörg',
  'last_name': 'Markert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 4,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159660,
  'entity_type': 'politician',
  'label': 'Sandra Funken',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159660',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sandra-funken',
  'first_name': 'Sandra',
  'last_name': 'Funken',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 9,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159647,
  'entity_type': 'politician',
  'label': 'Lutz Köhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159647',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lutz-koehler',
  'first_name': 'Lutz',
  'last_name': 'Köhler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': None,
  'occupation': 'Jurist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159633,
  'entity_type': 'politician',
  'label': 'Ines Claus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ines-claus',
  'first_name': 'Ines',
  'last_name': 'Claus',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': 'CDU Fraktionsvorsitzende',
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 6,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159599,
  'entity_type': 'politician',
  'label': 'Max Schad',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159599',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/max-schad',
  'first_name': 'Max',
  'last_name': 'Schad',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159570,
  'entity_type': 'politician',
  'label': 'Veljko Vuksanovic',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159570',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/veljko-vuksanovic',
  'first_name': 'Veljko',
  'last_name': 'Vuksanovic',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur',
  'residence': None,
  'occupation': 'Immobilienkaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159551,
  'entity_type': 'politician',
  'label': 'R. Alexander Lorz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159551',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/r-alexander-lorz',
  'first_name': 'R. Alexander',
  'last_name': 'Lorz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 23,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Prof. Dr.'},
 {'id': 159488,
  'entity_type': 'politician',
  'label': 'Jörg Michael Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159488',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-michael-mueller',
  'first_name': 'Jörg Michael',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': None,
  'occupation': 'Abgeordneter / Rechtsanwalt',
  'statistic_questions': 4,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159475,
  'entity_type': 'politician',
  'label': 'Thomas Hering',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159475',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-hering',
  'first_name': 'Thomas',
  'last_name': 'Hering',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Landtagsabgeordneter',
  'statistic_questions': 16,
  'statistic_questions_answered': 16,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159468,
  'entity_type': 'politician',
  'label': 'Dirk Bamberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159468',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dirk-bamberger',
  'first_name': 'Dirk',
  'last_name': 'Bamberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 159423,
  'entity_type': 'politician',
  'label': 'Alexander Lorch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/159423',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-lorch',
  'first_name': 'Alexander',
  'last_name': 'Lorch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 154930,
  'entity_type': 'politician',
  'label': 'Timo Mildau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/154930',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/timo-mildau',
  'first_name': 'Timo',
  'last_name': 'Mildau',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 154929,
  'entity_type': 'politician',
  'label': 'Helmut Martin',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/154929',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/helmut-martin',
  'first_name': 'Helmut',
  'last_name': 'Martin',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 4,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 152761,
  'entity_type': 'politician',
  'label': 'Guido Heuer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152761',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guido-heuer',
  'first_name': 'Guido',
  'last_name': 'Heuer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirt (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152759,
  'entity_type': 'politician',
  'label': 'Bernhard Daldrup',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152759',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernhard-daldrup-0',
  'first_name': 'Bernhard',
  'last_name': 'Daldrup',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'staatlich geprüfter Landwirt, Brennmeister',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152758,
  'entity_type': 'politician',
  'label': 'Daniel Szarata',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152758',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-szarata',
  'first_name': 'Daniel',
  'last_name': 'Szarata',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungsmanager (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152756,
  'entity_type': 'politician',
  'label': 'Florian Philipp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152756',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-philipp',
  'first_name': 'Florian',
  'last_name': 'Philipp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Einzelhandelskaufmann, Betriebswirt (VWA)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152753,
  'entity_type': 'politician',
  'label': 'Tobias Krull',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152753',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-krull',
  'first_name': 'Tobias',
  'last_name': 'Krull',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Datenverarbeitungskaufmann, Verwaltungsfachwirt',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 10,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152748,
  'entity_type': 'politician',
  'label': 'Chris Schulenburg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152748',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/chris-schulenburg',
  'first_name': 'Chris',
  'last_name': 'Schulenburg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152746,
  'entity_type': 'politician',
  'label': 'Carsten Borchert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152746',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-borchert',
  'first_name': 'Carsten',
  'last_name': 'Borchert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152719,
  'entity_type': 'politician',
  'label': 'Cornelia Blattner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152719',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/cornelia-blattner',
  'first_name': 'Cornelia',
  'last_name': 'Blattner',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Unternehmerin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152685,
  'entity_type': 'politician',
  'label': 'Julia Philippi',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152685',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/julia-philippi',
  'first_name': 'Julia',
  'last_name': 'Philippi',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Galseristin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 152070,
  'entity_type': 'politician',
  'label': 'Christof Reichert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/152070',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christof-reichert',
  'first_name': 'Christof',
  'last_name': 'Reichert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151529,
  'entity_type': 'politician',
  'label': 'Sabine Hartmann-Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151529',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sabine-hartmann-mueller',
  'first_name': 'Sabine',
  'last_name': 'Hartmann-Müller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirtin (FH)',
  'residence': None,
  'occupation': 'Mitglied des Ortschaftsrats, MdL',
  'statistic_questions': 8,
  'statistic_questions_answered': 6,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q51762514',
  'field_title': None},
 {'id': 151445,
  'entity_type': 'politician',
  'label': 'Alexander Zeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151445',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-zeyer',
  'first_name': 'Alexander',
  'last_name': 'Zeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1993,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann für Marketingkommunikation',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151444,
  'entity_type': 'politician',
  'label': 'Marc Speicher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151444',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marc-speicher',
  'first_name': 'Marc',
  'last_name': 'Speicher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann, Wirtschaftswissenschaftler ',
  'residence': 'Saarlouis ',
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151443,
  'entity_type': 'politician',
  'label': 'Sarah Gillen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151443',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-gillen',
  'first_name': 'Sarah',
  'last_name': 'Gillen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieurin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151442,
  'entity_type': 'politician',
  'label': 'Frank Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151442',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-wagner',
  'first_name': 'Frank',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151441,
  'entity_type': 'politician',
  'label': 'Alwin Theobald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151441',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alwin-theobald',
  'first_name': 'Alwin',
  'last_name': 'Theobald',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Straßenwärter, Justizvollzugsbeamter',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151440,
  'entity_type': 'politician',
  'label': 'Klaus Bouillon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151440',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-bouillon',
  'first_name': 'Klaus',
  'last_name': 'Bouillon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1947,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'MdL, Minister für Inneres, Bauen und Sport',
  'statistic_questions': 6,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151439,
  'entity_type': 'politician',
  'label': 'Sascha Zehner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151439',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sascha-zehner',
  'first_name': 'Sascha',
  'last_name': 'Zehner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151438,
  'entity_type': 'politician',
  'label': 'Petra Fretter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151438',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/petra-fretter',
  'first_name': 'Petra',
  'last_name': 'Fretter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Arzthelferin und MTA',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151237,
  'entity_type': 'politician',
  'label': 'Bodo Pfaff-Greiffenhagen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151237',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bodo-pfaff-greiffenhagen',
  'first_name': 'Bodo',
  'last_name': 'Pfaff-Greiffenhagen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Betriebswirt',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 151234,
  'entity_type': 'politician',
  'label': 'Frank Steinraths',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/151234',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-steinraths',
  'first_name': 'Frank',
  'last_name': 'Steinraths',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149683,
  'entity_type': 'politician',
  'label': 'Falk-Olaf Hoppe',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149683',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/falk-olaf-hoppe',
  'first_name': 'Falk-Olaf',
  'last_name': 'Hoppe',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt für Verwaltung und Rechtspflege',
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149661,
  'entity_type': 'politician',
  'label': 'Birgit Heitland',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149661',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/birgit-heitland',
  'first_name': 'Birgit',
  'last_name': 'Heitland',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149653,
  'entity_type': 'politician',
  'label': 'Mareike Lotte Wulf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149653',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mareike-lotte-wulf',
  'first_name': 'Mareike Lotte',
  'last_name': 'Wulf',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Sozialwissenschaftlerin',
  'residence': 'Ohr, Hameln-Pyrmont',
  'occupation': 'MdB',
  'statistic_questions': 11,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': '2583',
  'qid_wikidata': 'Q41569156',
  'field_title': None},
 {'id': 149650,
  'entity_type': 'politician',
  'label': 'Frauke Wöhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149650',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frauke-woehler',
  'first_name': 'Frauke',
  'last_name': 'Wöhler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Büroangestellte bei MdL Annette Schwarz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149642,
  'entity_type': 'politician',
  'label': 'Lasse Weritz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149642',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lasse-weritz',
  'first_name': 'Lasse',
  'last_name': 'Weritz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': None,
  'occupation': 'MdL, Lehrer',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149629,
  'entity_type': 'politician',
  'label': 'Colette Christin Thiemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149629',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/colette-christin-thiemann',
  'first_name': 'Colette Christin',
  'last_name': 'Thiemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149628,
  'entity_type': 'politician',
  'label': 'Ludwig Theuvsen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149628',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ludwig-theuvsen',
  'first_name': 'Ludwig',
  'last_name': 'Theuvsen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hochschullehrer für Betriebswirtschaft',
  'residence': 'Göttingen',
  'occupation': 'Staatssekretär im Niedersächsischen Ministerium für Ernährung, Landwirtschaft und Verbraucherschutz',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149608,
  'entity_type': 'politician',
  'label': 'Lukas J. G. Seidel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149608',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lukas-j-g-seidel',
  'first_name': 'Lukas J. G.',
  'last_name': 'Seidel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1990,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Fachangestellter für Arbeitsförderung, zert. Business-Coach EASC/IHK, Supervisor',
  'residence': None,
  'occupation': 'selbständiger Berater & Coach ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149606,
  'entity_type': 'politician',
  'label': 'Alexander Schwake',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149606',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexander-schwake',
  'first_name': 'Alexander',
  'last_name': 'Schwake',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1991,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Medienkaufmann für Digital- und Printmedien, Betriebswirt',
  'residence': None,
  'occupation': 'Medienkaufmann und Digitalreferent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149590,
  'entity_type': 'politician',
  'label': 'Eugen Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149590',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eugen-schmidt',
  'first_name': 'Eugen',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Wirtschaftsstudent ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149589,
  'entity_type': 'politician',
  'label': 'Jörn Schepelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149589',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joern-schepelmann',
  'first_name': 'Jörn',
  'last_name': 'Schepelmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Celle',
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149588,
  'entity_type': 'politician',
  'label': 'Marcel Scharrelmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149588',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcel-scharrelmann',
  'first_name': 'Marcel',
  'last_name': 'Scharrelmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Key Account Manager',
  'residence': 'Diepholz',
  'occupation': 'Mitglied des Landtages ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149569,
  'entity_type': 'politician',
  'label': 'Laura Hopmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149569',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/laura-hopmann',
  'first_name': 'Laura',
  'last_name': 'Hopmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftlerin',
  'residence': 'Gronau (Leine)',
  'occupation': 'MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149545,
  'entity_type': 'politician',
  'label': 'Marco Mohrmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149545',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-mohrmann',
  'first_name': 'Marco',
  'last_name': 'Mohrmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Rhadereistedt',
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149534,
  'entity_type': 'politician',
  'label': 'Tatjana Maier-Keil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149534',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tatjana-maier-keil',
  'first_name': 'Tatjana',
  'last_name': 'Maier-Keil',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt- und Notarfachangestellte',
  'residence': None,
  'occupation': 'Studentin der Sonderpädagogik und Evangelischen Religion  (M. Ed. - Lehramt)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149532,
  'entity_type': 'politician',
  'label': 'Torsten Luhm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149532',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-luhm',
  'first_name': 'Torsten',
  'last_name': 'Luhm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Verwaltungsbeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149519,
  'entity_type': 'politician',
  'label': 'Andreas Körner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149519',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-koerner',
  'first_name': 'Andreas',
  'last_name': 'Körner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149516,
  'entity_type': 'politician',
  'label': 'Veronika Bode',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149516',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/veronika-bode',
  'first_name': 'Veronika',
  'last_name': 'Bode',
  'birth_name': 'Nitschke',
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirtin (FH)',
  'residence': 'Grasleben',
  'occupation': 'Landtagsabgeordnete (MdL)',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149510,
  'entity_type': 'politician',
  'label': 'Kerstin Keil',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149510',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-keil',
  'first_name': 'Kerstin',
  'last_name': 'Keil',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'staatlich geprüfte Hauswirtschaftsleiterin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149508,
  'entity_type': 'politician',
  'label': 'Peter Kassel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149508',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-kassel',
  'first_name': 'Peter',
  'last_name': 'Kassel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kaufm. Angestellter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149506,
  'entity_type': 'politician',
  'label': 'Jesse Jeng',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149506',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jesse-jeng',
  'first_name': 'Jesse',
  'last_name': 'Jeng',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Bankbevollmächtigter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149498,
  'entity_type': 'politician',
  'label': 'Eike Holsten',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149498',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eike-holsten',
  'first_name': 'Eike',
  'last_name': 'Holsten',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Politikwissenschaftler',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149479,
  'entity_type': 'politician',
  'label': 'Jan-Tobias Hackenberg',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149479',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jan-tobias-hackenberg',
  'first_name': 'Jan-Tobias',
  'last_name': 'Hackenberg',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': 'Braunschweig',
  'occupation': 'Unternehmensjurist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149472,
  'entity_type': 'politician',
  'label': 'Sarah Grabenhorst-Quidde',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149472',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sarah-grabenhorst-quidde',
  'first_name': 'Sarah',
  'last_name': 'Grabenhorst-Quidde',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Informatikerin',
  'residence': 'Semmenstedt',
  'occupation': 'Landwirtin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149470,
  'entity_type': 'politician',
  'label': 'Anne-Marie Glowienka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149470',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anne-marie-glowienka',
  'first_name': 'Anne-Marie',
  'last_name': 'Glowienka',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Physiotherapeutin, Gesundheits- und Demografieberaterin',
  'residence': None,
  'occupation': 'Geschäftsführerin hochForm ',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149466,
  'entity_type': 'politician',
  'label': 'Christian Fühner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149466',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-fuehner',
  'first_name': 'Christian',
  'last_name': 'Fühner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Lingen',
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149461,
  'entity_type': 'politician',
  'label': 'Björn Fischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149461',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-fischer',
  'first_name': 'Björn',
  'last_name': 'Fischer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Wirtschaftsingenieur',
  'residence': 'Friedeburg-Marx',
  'occupation': 'Zentraler Investitionsmanager im Flugzeugbau',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149454,
  'entity_type': 'politician',
  'label': 'Christoph Eilers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149454',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-eilers',
  'first_name': 'Christoph',
  'last_name': 'Eilers',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Cloppenburg',
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149453,
  'entity_type': 'politician',
  'label': 'Thomas Ehbrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149453',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-ehbrecht',
  'first_name': 'Thomas',
  'last_name': 'Ehbrecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': None,
  'occupation': 'Unternehmer/Ind.Kfm. - Geschäftsführer einer eigenen Unternehmensgruppe',
  'statistic_questions': 4,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149446,
  'entity_type': 'politician',
  'label': 'Hans-Peter Dreß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149446',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-peter-dress',
  'first_name': 'Hans-Peter',
  'last_name': 'Dreß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': None,
  'occupation': 'Schulleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149445,
  'entity_type': 'politician',
  'label': 'Uwe Dorendorf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149445',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-dorendorf',
  'first_name': 'Uwe',
  'last_name': 'Dorendorf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': 'Clenze',
  'occupation': 'Versicherungsfachmann',
  'statistic_questions': 4,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149438,
  'entity_type': 'politician',
  'label': 'Folker Diermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149438',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/folker-diermann',
  'first_name': 'Folker',
  'last_name': 'Diermann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Automobilkaufmann',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149426,
  'entity_type': 'politician',
  'label': 'Martin Brüggemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149426',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-brueggemann',
  'first_name': 'Martin',
  'last_name': 'Brüggemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149419,
  'entity_type': 'politician',
  'label': 'Ralph Bogisch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149419',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralph-bogisch',
  'first_name': 'Ralph',
  'last_name': 'Bogisch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirt (FH)',
  'residence': None,
  'occupation': 'selbständiger Versicherungskaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149418,
  'entity_type': 'politician',
  'label': 'Felix Blaschzyk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149418',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-blaschzyk',
  'first_name': 'Felix',
  'last_name': 'Blaschzyk',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1987,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149410,
  'entity_type': 'politician',
  'label': 'Michael Berger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149410',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-berger',
  'first_name': 'Michael',
  'last_name': 'Berger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Master of Arts Wirtschaft- und Sozialwissenschaft',
  'residence': None,
  'occupation': 'Arbeitsvermittlier',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149407,
  'entity_type': 'politician',
  'label': 'Sven Behrens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149407',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sven-behrens',
  'first_name': 'Sven',
  'last_name': 'Behrens',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt',
  'residence': None,
  'occupation': 'Polizeibeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149404,
  'entity_type': 'politician',
  'label': 'Bernd Beckmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149404',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-beckmann',
  'first_name': 'Bernd',
  'last_name': 'Beckmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'Landwirt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149400,
  'entity_type': 'politician',
  'label': 'Christoph Baak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149400',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-baak',
  'first_name': 'Christoph',
  'last_name': 'Baak',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Mediengestalter',
  'residence': None,
  'occupation': 'Freiberufler Marketing und Werbung',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 149350,
  'entity_type': 'politician',
  'label': 'Stephan Hellwig',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/149350',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-hellwig',
  'first_name': 'Stephan',
  'last_name': 'Hellwig',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Nautischer Offizier',
  'residence': None,
  'occupation': 'Leiter des nautischen Büros beim Wasserstraßen- und Schifffahrtsamt Wilhelmshaven',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 147592,
  'entity_type': 'politician',
  'label': 'Thomas Jepsen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/147592',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-jepsen',
  'first_name': 'Thomas',
  'last_name': 'Jepsen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann, Sparkassenfachwirt, Sparkassenbetriebswirt, Sachverständiger (Bewertung bebaute und unbebaute Grundstücke)',
  'residence': 'Süderbrarup',
  'occupation': 'Immobilienmakler',
  'statistic_questions': 10,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q33105804',
  'field_title': None},
 {'id': 145896,
  'entity_type': 'politician',
  'label': 'Axel Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145896',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-mueller',
  'first_name': 'Axel',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 6,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2187',
  'qid_wikidata': 'Q40998023',
  'field_title': None},
 {'id': 145894,
  'entity_type': 'politician',
  'label': 'Axel Eduard Fischer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145894',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-eduard-fischer',
  'first_name': 'Axel Eduard',
  'last_name': 'Fischer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 23,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '1007',
  'qid_wikidata': 'Q22939',
  'field_title': None},
 {'id': 145893,
  'entity_type': 'politician',
  'label': 'Marc Biadacz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145893',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marc-biadacz',
  'first_name': 'Marc',
  'last_name': 'Biadacz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sozialwissenschaftler (M.A.)',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 7,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2036',
  'qid_wikidata': 'Q42115961',
  'field_title': None},
 {'id': 145892,
  'entity_type': 'politician',
  'label': 'Torbjörn Kartes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145892',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torbjoern-kartes',
  'first_name': 'Torbjörn',
  'last_name': 'Kartes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt',
  'residence': 'Ludwigshafen',
  'occupation': 'MdB',
  'statistic_questions': 20,
  'statistic_questions_answered': 20,
  'ext_id_bundestagsverwaltung': '2135',
  'qid_wikidata': 'Q40999257',
  'field_title': None},
 {'id': 145891,
  'entity_type': 'politician',
  'label': 'Andreas Steier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145891',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-steier',
  'first_name': 'Andreas',
  'last_name': 'Steier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 14,
  'statistic_questions_answered': 14,
  'ext_id_bundestagsverwaltung': '2254',
  'qid_wikidata': 'Q40999248',
  'field_title': None},
 {'id': 145890,
  'entity_type': 'politician',
  'label': 'Josef Oster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145890',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-oster',
  'first_name': 'Josef',
  'last_name': 'Oster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Verwaltungswirt (FH)',
  'residence': 'Koblenz',
  'occupation': 'Bundestagsabgeordneter',
  'statistic_questions': 18,
  'statistic_questions_answered': 18,
  'ext_id_bundestagsverwaltung': '2202',
  'qid_wikidata': 'Q40999127',
  'field_title': None},
 {'id': 145889,
  'entity_type': 'politician',
  'label': 'Astrid Mannes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145889',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/astrid-mannes',
  'first_name': 'Astrid',
  'last_name': 'Mannes',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister in den Fächern Geschichte, Politikwissenschaft und Öffentliches Recht',
  'residence': 'Mühltal',
  'occupation': 'Bundestagsabgeordnete',
  'statistic_questions': 73,
  'statistic_questions_answered': 73,
  'ext_id_bundestagsverwaltung': '2173',
  'qid_wikidata': 'Q750695',
  'field_title': 'Dr.'},
 {'id': 145888,
  'entity_type': 'politician',
  'label': 'Björn Simon',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145888',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjoern-simon',
  'first_name': 'Björn',
  'last_name': 'Simon',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 27,
  'statistic_questions_answered': 27,
  'ext_id_bundestagsverwaltung': '2246',
  'qid_wikidata': 'Q40998580',
  'field_title': None},
 {'id': 145887,
  'entity_type': 'politician',
  'label': 'Stefan Sauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145887',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-sauer',
  'first_name': 'Stefan',
  'last_name': 'Sauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Betriebswirt',
  'residence': 'Groß-Gerau',
  'occupation': 'MdB',
  'statistic_questions': 22,
  'statistic_questions_answered': 19,
  'ext_id_bundestagsverwaltung': '2225',
  'qid_wikidata': 'Q2337497',
  'field_title': None},
 {'id': 145886,
  'entity_type': 'politician',
  'label': 'Bettina Wiesmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145886',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bettina-wiesmann',
  'first_name': 'Bettina',
  'last_name': 'Wiesmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 30,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': '2281',
  'qid_wikidata': 'Q850085',
  'field_title': None},
 {'id': 145885,
  'entity_type': 'politician',
  'label': 'Norbert Maria Altenkamp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145885',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-maria-altenkamp',
  'first_name': 'Norbert Maria',
  'last_name': 'Altenkamp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Volkswirt',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 12,
  'statistic_questions_answered': 5,
  'ext_id_bundestagsverwaltung': '2021',
  'qid_wikidata': 'Q1996643',
  'field_title': None},
 {'id': 145884,
  'entity_type': 'politician',
  'label': 'Ingmar Jung',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145884',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ingmar-jung',
  'first_name': 'Ingmar',
  'last_name': 'Jung',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': 'Wiesbaden',
  'occupation': 'MdB',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': '2131',
  'qid_wikidata': 'Q1663079',
  'field_title': None},
 {'id': 145883,
  'entity_type': 'politician',
  'label': 'Bernd Siebert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145883',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-siebert',
  'first_name': 'Bernd',
  'last_name': 'Siebert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffmann',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 6,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': '808',
  'qid_wikidata': 'Q824247',
  'field_title': None},
 {'id': 145882,
  'entity_type': 'politician',
  'label': 'Timo Lübeck',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145882',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/timo-luebeck',
  'first_name': 'Timo',
  'last_name': 'Lübeck',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Referent',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 145880,
  'entity_type': 'politician',
  'label': 'Roland Ermer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145880',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-ermer',
  'first_name': 'Roland',
  'last_name': 'Ermer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bäckerlehre',
  'residence': None,
  'occupation': 'Bäckermeister',
  'statistic_questions': 10,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 145879,
  'entity_type': 'politician',
  'label': 'Hans-Jürgen Thies',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145879',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-juergen-thies',
  'first_name': 'Hans-Jürgen',
  'last_name': 'Thies',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechtswissenschaften',
  'residence': 'Lippetal',
  'occupation': 'MdB, Rechtsanwalt',
  'statistic_questions': 18,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': '2266',
  'qid_wikidata': 'Q41580479',
  'field_title': None},
 {'id': 145878,
  'entity_type': 'politician',
  'label': 'Paul Ziemiak',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145878',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/paul-ziemiak',
  'first_name': 'Paul',
  'last_name': 'Ziemiak',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1985,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 90,
  'statistic_questions_answered': 89,
  'ext_id_bundestagsverwaltung': '2285',
  'qid_wikidata': 'Q18169686',
  'field_title': None},
 {'id': 145877,
  'entity_type': 'politician',
  'label': 'Kerstin Vieregge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145877',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kerstin-vieregge',
  'first_name': 'Kerstin',
  'last_name': 'Vieregge',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirtin',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 5,
  'statistic_questions_answered': 4,
  'ext_id_bundestagsverwaltung': '2272',
  'qid_wikidata': 'Q40999043',
  'field_title': None},
 {'id': 145876,
  'entity_type': 'politician',
  'label': 'Oliver Vogt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145876',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-vogt',
  'first_name': 'Oliver',
  'last_name': 'Vogt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Physiker / Gymnasiallehrer',
  'residence': 'Espelkamp',
  'occupation': 'Gymnasiallehrer',
  'statistic_questions': 5,
  'statistic_questions_answered': 3,
  'ext_id_bundestagsverwaltung': '2563',
  'qid_wikidata': 'Q108760384',
  'field_title': None},
 {'id': 145875,
  'entity_type': 'politician',
  'label': 'Michael Weber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145875',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-weber-0',
  'first_name': 'Michael',
  'last_name': 'Weber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Stadtrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 145874,
  'entity_type': 'politician',
  'label': 'Marc Henrichmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145874',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marc-henrichmann',
  'first_name': 'Marc',
  'last_name': 'Henrichmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 8,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': '2104',
  'qid_wikidata': 'Q40999107',
  'field_title': None},
 {'id': 145873,
  'entity_type': 'politician',
  'label': 'Michael Breilmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145873',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-breilmann',
  'first_name': 'Michael',
  'last_name': 'Breilmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1983,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurastudium',
  'residence': 'Castrop-Rauxel',
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 11,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': '2345',
  'qid_wikidata': 'Q108753285',
  'field_title': None},
 {'id': 145872,
  'entity_type': 'politician',
  'label': 'Stefan Rouenhoff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145872',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-rouenhoff',
  'first_name': 'Stefan',
  'last_name': 'Rouenhoff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ausgebildeter Bauzeichner,  Diplom-Volkswirt, Politikwissenschaftler (MA)',
  'residence': 'Goch / Kreis Kleve',
  'occupation': 'MdB',
  'statistic_questions': 21,
  'statistic_questions_answered': 15,
  'ext_id_bundestagsverwaltung': '2223',
  'qid_wikidata': 'Q40999099',
  'field_title': None},
 {'id': 145871,
  'entity_type': 'politician',
  'label': 'Hermann-Josef Tebroke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145871',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hermann-josef-tebroke',
  'first_name': 'Hermann-Josef',
  'last_name': 'Tebroke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Betriebswirtschaftslehre',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 5,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2263',
  'qid_wikidata': 'Q1610440',
  'field_title': 'Dr.'},
 {'id': 145870,
  'entity_type': 'politician',
  'label': 'Carsten Brodesser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145870',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/carsten-brodesser',
  'first_name': 'Carsten',
  'last_name': 'Brodesser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 19,
  'statistic_questions_answered': 19,
  'ext_id_bundestagsverwaltung': '2047',
  'qid_wikidata': 'Q40998983',
  'field_title': None},
 {'id': 145869,
  'entity_type': 'politician',
  'label': 'Torsten Schweiger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145869',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-schweiger',
  'first_name': 'Torsten',
  'last_name': 'Schweiger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ingenieur',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 17,
  'statistic_questions_answered': 17,
  'ext_id_bundestagsverwaltung': '2242',
  'qid_wikidata': 'Q40999416',
  'field_title': None},
 {'id': 145868,
  'entity_type': 'politician',
  'label': 'Christoph Bernstiel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145868',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-bernstiel',
  'first_name': 'Christoph',
  'last_name': 'Bernstiel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister Artium Politikwissenschaft und Soziologie / PR-Berater (PZOK)',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 16,
  'statistic_questions_answered': 14,
  'ext_id_bundestagsverwaltung': '2034',
  'qid_wikidata': 'Q42116735',
  'field_title': None},
 {'id': 145867,
  'entity_type': 'politician',
  'label': 'Sepp Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145867',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sepp-mueller',
  'first_name': 'Sepp',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1989,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'diplomierter Bankbetriebswirt',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 10,
  'statistic_questions_answered': 10,
  'ext_id_bundestagsverwaltung': '2190',
  'qid_wikidata': 'Q40999402',
  'field_title': None},
 {'id': 145866,
  'entity_type': 'politician',
  'label': 'Eckhard Gnodtke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145866',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eckhard-gnodtke',
  'first_name': 'Eckhard',
  'last_name': 'Gnodtke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 9,
  'statistic_questions_answered': 8,
  'ext_id_bundestagsverwaltung': '2089',
  'qid_wikidata': 'Q40999347',
  'field_title': None},
 {'id': 145865,
  'entity_type': 'politician',
  'label': 'Dietlind Tiemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145865',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietlind-tiemann',
  'first_name': 'Dietlind',
  'last_name': 'Tiemann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium an der Hochschule für Ökonomie, Sektion Volkswirtschaft',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 31,
  'statistic_questions_answered': 21,
  'ext_id_bundestagsverwaltung': '2268',
  'qid_wikidata': 'Q1223301',
  'field_title': None},
 {'id': 145864,
  'entity_type': 'politician',
  'label': 'Maximilian Oppelt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145864',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maximilian-oppelt',
  'first_name': 'Maximilian',
  'last_name': 'Oppelt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1986,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Volljurist, 2. Staatsexamen',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': 3,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 145863,
  'entity_type': 'politician',
  'label': 'Silvia Breher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145863',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silvia-breher',
  'first_name': 'Silvia',
  'last_name': 'Breher',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': None,
  'occupation': 'MdB, Geschäftsführerin und Rechtsanwältin',
  'statistic_questions': 7,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': '2044',
  'qid_wikidata': 'Q40998761',
  'field_title': None},
 {'id': 145862,
  'entity_type': 'politician',
  'label': 'Philipp Amthor',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145862',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philipp-amthor',
  'first_name': 'Philipp',
  'last_name': 'Amthor',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1992,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 32,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': '2022',
  'qid_wikidata': 'Q40998607',
  'field_title': None},
 {'id': 145861,
  'entity_type': 'politician',
  'label': 'Claudia Schmidtke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145861',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/claudia-schmidtke',
  'first_name': 'Claudia',
  'last_name': 'Schmidtke',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Professorin; MBA (Health Care Management), Gendermedizinerin',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 33,
  'statistic_questions_answered': 32,
  'ext_id_bundestagsverwaltung': '2233',
  'qid_wikidata': 'Q40974933',
  'field_title': None},
 {'id': 145860,
  'entity_type': 'politician',
  'label': 'Melanie Bernstein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/145860',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/melanie-bernstein',
  'first_name': 'Melanie',
  'last_name': 'Bernstein',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kulturwissenschaftlerin',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': '2033',
  'qid_wikidata': 'Q40999288',
  'field_title': None},
 {'id': 139633,
  'entity_type': 'politician',
  'label': 'Robert Stein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139633',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/robert-stein',
  'first_name': 'Robert',
  'last_name': 'Stein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Selbständiger Unternehmer',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139620,
  'entity_type': 'politician',
  'label': 'Volker Jung',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139620',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-jung',
  'first_name': 'Volker',
  'last_name': 'Jung',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139599,
  'entity_type': 'politician',
  'label': 'Wolfgang Wehner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139599',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-wehner',
  'first_name': 'Wolfgang',
  'last_name': 'Wehner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehre zum KFZ-Schlosser, Studium zum Berufsschullehrer Maschinenbau',
  'residence': None,
  'occupation': 'Stadtrat Suhl, stellvertretender Aufsichtsratsvorsitzender ITM Suhl, Mitglied im Verwaltungsrat der Rhön-Rennsteig-Sparkasse',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139582,
  'entity_type': 'politician',
  'label': 'Tabea Gies',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139582',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tabea-gies',
  'first_name': 'Tabea',
  'last_name': 'Gies',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': '1. Staatsexamen für das Lehramt am Gymnasium für Musik, Abschluss „Sologesang Bühne“',
  'residence': None,
  'occupation': 'Lehramtsreferendarin und freischaffende Sängerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139575,
  'entity_type': 'politician',
  'label': 'Siegfried Wetzel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139575',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/siegfried-wetzel',
  'first_name': 'Siegfried',
  'last_name': 'Wetzel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Landmaschinenschlosser, Kfz-Schlosser, Studium an der Verkehrsschule Gotha',
  'residence': None,
  'occupation': 'MdL, Vorsitzender des CDU Arbeitskreises für Bau und Verkehr, Mitglied des Petitionsausschusses, Kreisvorsitzender des CDU-Kreisverbandes Saale-Orla-Kreis',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139566,
  'entity_type': 'politician',
  'label': 'Reyk Seela',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139566',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reyk-seela',
  'first_name': 'Reyk',
  'last_name': 'Seela',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Geschichtsstudium, Diplomhistoriker',
  'residence': None,
  'occupation': 'MdL, Sprecher des Ausschusses für Wissenschaft, Kunst und Medien, Fraktionsvorsitzender der CDU Fraktion im Stadtrat Jena, Kreisvorsitzender der CDU Jena, Mitglied der Versammlung der Thüringer Landesmedienanstalt und des Landesjugendhilfeausschusses',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139564,
  'entity_type': 'politician',
  'label': 'Regina Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139564',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/regina-muller',
  'first_name': 'Regina',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Krippenerzieherin, pädagogische Koordinatorin beim Verband der Behinderten Wartburgkreis e. V., Heilpädagogin',
  'residence': None,
  'occupation': 'Leiterin einer Heilpädagogischen Einrichtung für schwerstmehrfachbehinderte junge Erwachsene beim Verband der Behinderten Wartburgkreis e. V.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139560,
  'entity_type': 'politician',
  'label': 'Ralf Bornkessel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139560',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-bornkessel',
  'first_name': 'Ralf',
  'last_name': 'Bornkessel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Baufacharbeiter mit Abitur, Vermessungsfacharbeiter, Studium zum Vermessungsingenieur',
  'residence': None,
  'occupation': 'MdL, Mitglied des CDU Landesfachausschusses Wirtschaft, Kreisvorsitzender und amtierender Landesvorsitzender der Mittelstandsvereinigung der CDU Thüringen (MIT), Stadtratsmitglied in Gera, Öffentlich bestellter Vermessungsingenieur (ÖbVI), Beratender Inge',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139555,
  'entity_type': 'politician',
  'label': 'Michael Krapp',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139555',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-krapp-0',
  'first_name': 'Michael',
  'last_name': 'Krapp',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1944,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Allgemeinen und Theoretischen Elektrotechnik, Promotion zum Dr.-Ing. auf dem Gebiet der Technischen Informatik',
  'residence': None,
  'occupation': 'MdL, Vorsitzender des Ausschusses für Wirtschaft, Technologie und Arbeit,',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139554,
  'entity_type': 'politician',
  'label': 'Jens Goebel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139554',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-goebel',
  'first_name': 'Jens',
  'last_name': 'Goebel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Mathematik, Promotion zum Dr.rer.nat.',
  'residence': None,
  'occupation': 'MdL, Thüringer Kultusminister a.D.',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139514,
  'entity_type': 'politician',
  'label': 'Klaus von der Krone',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139514',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-von-der-krone',
  'first_name': 'Klaus',
  'last_name': 'von der Krone',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1944,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebsschlosser, Maschinenbauingenieur, Qualifikation Verwaltungsfachwirt',
  'residence': None,
  'occupation': 'Bürgermeister der Gemeinde Ichtershausen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139487,
  'entity_type': 'politician',
  'label': 'Horst Krauße',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139487',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/horst-krausse',
  'first_name': 'Horst',
  'last_name': 'Krauße',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Landmaschinen- und Traktorenschlosser, geprüfter Verwaltungsangestellter, Verwaltungsfachwirt',
  'residence': None,
  'occupation': 'MdL, Mitglied des Kreistags Greiz, Vorsitzender der CDU-Fraktion, Mitglied der Ausschüsse für Naturschutz und Umwelt sowie für Wissenschaft, Kunst und Medien',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139474,
  'entity_type': 'politician',
  'label': 'Gustav Bergemann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139474',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gustav-bergemann',
  'first_name': 'Gustav',
  'last_name': 'Bergemann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Werkzeugmacher, Studium Wissenschaftlicher Gerätebau',
  'residence': None,
  'occupation': 'Landesvorsitzender der Christlich-Demokratischen Arbeitnehmerschaft (CDA), stellvertretender CDA-Bundesvorsitzender, Mitglied im CDU-Landesvorstand Thüringen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139470,
  'entity_type': 'politician',
  'label': 'Gottfried Schugens',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139470',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gottfried-schugens',
  'first_name': 'Gottfried',
  'last_name': 'Schugens',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1946,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Landmaschinen- und Traktorenschlosser, Ingenieurs-Studium',
  'residence': None,
  'occupation': 'Stellv. Vorsitzender Zweckverband Abfallwirtschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139466,
  'entity_type': 'politician',
  'label': 'Gerhard Günther',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139466',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-guenther',
  'first_name': 'Gerhard',
  'last_name': 'Günther',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kfz-Mechaniker, Verwaltungsangestellter',
  'residence': None,
  'occupation': 'MdL, stellv. Vorsitzender des Ausschusses für Soziales, Familie und Gesundheit, arbeitsmarktpolitischer Sprecher der CDU-Fraktion',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139463,
  'entity_type': 'politician',
  'label': 'Fritz Schröter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139463',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/fritz-schroter',
  'first_name': 'Fritz',
  'last_name': 'Schröter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hochschulstudium mit Abschluss Diplomingenieur für Bauwesen',
  'residence': None,
  'occupation': 'Parlamentarischer Geschäftsführer der CDU Landtagsfraktion, Vorsitzender des Beirates beim Thüringer Beauftragten für den Datenschutz, Vorsitzender des Kreistages Altenburger Land, Inhaber eines Ingenieurbüros für Bauwesen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139445,
  'entity_type': 'politician',
  'label': 'Klaus Zeh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139445',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-zeh',
  'first_name': 'Klaus',
  'last_name': 'Zeh',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Informationstechniker',
  'residence': None,
  'occupation': 'Thüringer Minister für\xa0Bundes- und Europaangelegenheiten',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139436,
  'entity_type': 'politician',
  'label': 'Dieter Althaus',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139436',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dieter-althaus',
  'first_name': 'Dieter',
  'last_name': 'Althaus',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplomlehrer für Physik und Mathematik',
  'residence': None,
  'occupation': 'Ministerpräsident des Freistaats Thüringen, Mitglied des Thüringer Landtages',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139421,
  'entity_type': 'politician',
  'label': 'Christian Gumprecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139421',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-gumprecht',
  'first_name': 'Christian',
  'last_name': 'Gumprecht',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1950,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Elektrotechnik',
  'residence': None,
  'occupation': 'MdL, Vorsitzender der CDU Mittelstandsvereinigung Kreisverband Altenburger Land, Sonderbeauftragter für Immobiliendienstleistungen und Projektleiter für Technologieinfrastruktur in der Thüringer Landesentwicklungsg',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139404,
  'entity_type': 'politician',
  'label': 'Beate Misch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139404',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/beate-misch',
  'first_name': 'Beate',
  'last_name': 'Misch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verwaltungsfachwirtin/Betriebswirtin(VWA)',
  'residence': None,
  'occupation': 'Gemeinschaftsvorsitzende der Verwaltungsgemeinschaft',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139382,
  'entity_type': 'politician',
  'label': 'Volker Dornquast',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139382',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-dornquast',
  'first_name': 'Volker',
  'last_name': 'Dornquast',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139364,
  'entity_type': 'politician',
  'label': 'Seyran Papo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139364',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/seyran-papo',
  'first_name': 'Seyran',
  'last_name': 'Papo',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Beeidigte Dolmetscherin',
  'residence': 'Kiel',
  'occupation': 'Selbständige Dolmetscherin',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139361,
  'entity_type': 'politician',
  'label': 'Rasmus Vöge',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139361',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rasmus-voege',
  'first_name': 'Rasmus',
  'last_name': 'Vöge',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Schifffahrtskaufmann, Fachwirt für Hafenwirtschaft',
  'residence': 'Mölln',
  'occupation': 'Verantwortliche Position im internationalen Vertrieb der HHLA',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139354,
  'entity_type': 'politician',
  'label': 'Natalina Boenigk',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139354',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/natalina-boenigk',
  'first_name': 'Natalina',
  'last_name': 'Boenigk',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hotelfachfrau',
  'residence': None,
  'occupation': 'Wahlkreisbüro Dr. Chistian von Boetticher',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139346,
  'entity_type': 'politician',
  'label': 'Maren Schomaker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139346',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maren-schomaker',
  'first_name': 'Maren',
  'last_name': 'Schomaker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Finanzkauffrau',
  'residence': None,
  'occupation': 'Immobilienkauffrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139341,
  'entity_type': 'politician',
  'label': 'Kristina Herbst',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139341',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kristina-herbst',
  'first_name': 'Kristina',
  'last_name': 'Herbst',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Kauffrau',
  'residence': None,
  'occupation': 'Staatssekretärin im Innenministerium',
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139332,
  'entity_type': 'politician',
  'label': 'Jost de Jager',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139332',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jost-de-jager',
  'first_name': 'Jost',
  'last_name': 'de Jager',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Minister für Wissenschaft, Wirtschaft und Verkehr',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139326,
  'entity_type': 'politician',
  'label': 'Joachim Wagner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139326',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-wagner',
  'first_name': 'Joachim',
  'last_name': 'Wagner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Verbandsgeschäftsführer',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139252,
  'entity_type': 'politician',
  'label': 'Wilfried Wengler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139252',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wilfried-wengler',
  'first_name': 'Wilfried',
  'last_name': 'Wengler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1944,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Unternehmensberater',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139247,
  'entity_type': 'politician',
  'label': 'Ursula Sassen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139247',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ursula-sassen',
  'first_name': 'Ursula',
  'last_name': 'Sassen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1947,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Selbständige Kauffrau',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139244,
  'entity_type': 'politician',
  'label': 'Torsten Geerdts',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139244',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/torsten-geerdts',
  'first_name': 'Torsten',
  'last_name': 'Geerdts',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': None,
  'occupation': 'Landtagspräsident',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139230,
  'entity_type': 'politician',
  'label': 'Susanne Herold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139230',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/susanne-herold',
  'first_name': 'Susanne',
  'last_name': 'Herold',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Realschullehrerin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139197,
  'entity_type': 'politician',
  'label': 'Rainer Wiegard',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139197',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-wiegard',
  'first_name': 'Rainer',
  'last_name': 'Wiegard',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekaufmann',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139191,
  'entity_type': 'politician',
  'label': 'Peter Sönnichsen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139191',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-sonnichsen',
  'first_name': 'Peter',
  'last_name': 'Sönnichsen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Immobilienkaufmann',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139188,
  'entity_type': 'politician',
  'label': 'Peter Harry Carstensen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139188',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-harry-carstensen',
  'first_name': 'Peter Harry',
  'last_name': 'Carstensen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1947,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Agraringenieur',
  'residence': None,
  'occupation': 'MdL, Ministerpräsident',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q62196',
  'field_title': None},
 {'id': 139158,
  'entity_type': 'politician',
  'label': 'Markus Matthießen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139158',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-matthiessen',
  'first_name': 'Markus',
  'last_name': 'Matthießen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann',
  'residence': None,
  'occupation': 'Landtagsabgeordneter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139157,
  'entity_type': 'politician',
  'label': 'Mark-Oliver Potzahr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139157',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/mark-oliver-potzahr',
  'first_name': 'Mark-Oliver',
  'last_name': 'Potzahr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmännischer Angestellter',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139155,
  'entity_type': 'politician',
  'label': 'Marion Herdan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139155',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marion-herdan',
  'first_name': 'Marion',
  'last_name': 'Herdan',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Angestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q1307325',
  'field_title': None},
 {'id': 139141,
  'entity_type': 'politician',
  'label': 'Klaus Klinckhamer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139141',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-klinckhamer',
  'first_name': 'Klaus',
  'last_name': 'Klinckhamer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1944,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Landwirt; Agraringenieur',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139135,
  'entity_type': 'politician',
  'label': 'Karsten Jasper',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139135',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karsten-jasper',
  'first_name': 'Karsten',
  'last_name': 'Jasper',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Geschäftsführer',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139127,
  'entity_type': 'politician',
  'label': 'Jutta Scheicht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139127',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jutta-scheicht',
  'first_name': 'Jutta',
  'last_name': 'Scheicht',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kauffrau',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139116,
  'entity_type': 'politician',
  'label': 'Jens-Christian Magnussen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139116',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-christian-magnussen',
  'first_name': 'Jens-Christian',
  'last_name': 'Magnussen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Elektrotechniker',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139109,
  'entity_type': 'politician',
  'label': 'Herlich Marie Todsen-Reese',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139109',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/herlich-marie-todsen-reese',
  'first_name': 'Herlich Marie',
  'last_name': 'Todsen-Reese',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ing. Landschaftsplanerin',
  'residence': None,
  'occupation': 'Vizepräsidentin des Landtags',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139098,
  'entity_type': 'politician',
  'label': 'Heike Franzen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139098',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-franzen',
  'first_name': 'Heike',
  'last_name': 'Franzen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hausfrau',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139075,
  'entity_type': 'politician',
  'label': 'Frank Sauter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139075',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-sauter',
  'first_name': 'Frank',
  'last_name': 'Sauter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Steuerberater',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139065,
  'entity_type': 'politician',
  'label': 'Trutz Kerssenbrock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139065',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/trutz-kerssenbrock',
  'first_name': 'Trutz',
  'last_name': 'Kerssenbrock',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt &amp; Notar',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139060,
  'entity_type': 'politician',
  'label': 'Michael von Abercron',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139060',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-von-abercron',
  'first_name': 'Michael',
  'last_name': 'von Abercron',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Agrarwissenschaftler',
  'residence': None,
  'occupation': 'Mitglied des Bundestages',
  'statistic_questions': 25,
  'statistic_questions_answered': 25,
  'ext_id_bundestagsverwaltung': '2016',
  'qid_wikidata': 'Q1666351',
  'field_title': None},
 {'id': 139053,
  'entity_type': 'politician',
  'label': 'Christian von Boetticher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139053',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-von-boetticher',
  'first_name': 'Christian',
  'last_name': 'von Boetticher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwalt; Minister a. D.',
  'residence': None,
  'occupation': 'Fraktionsvorsitzender',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139047,
  'entity_type': 'politician',
  'label': 'Dagmar Kerssenbrock',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139047',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dagmar-kerssenbrock',
  'first_name': 'Dagmar',
  'last_name': 'Kerssenbrock',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Hausfrau',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 139019,
  'entity_type': 'politician',
  'label': 'Astrid Damerow',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/139019',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/astrid-damerow',
  'first_name': 'Astrid',
  'last_name': 'Damerow',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkauffrau, Business-Coach und -Trainerin',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': '2060',
  'qid_wikidata': 'Q750543',
  'field_title': None},
 {'id': 138976,
  'entity_type': 'politician',
  'label': 'Thomas Leimbach',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138976',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-leimbach',
  'first_name': 'Thomas',
  'last_name': 'Leimbach',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Präsident Landesverwaltungsamt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138975,
  'entity_type': 'politician',
  'label': 'Thomas Keindorf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138975',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-keindorf',
  'first_name': 'Thomas',
  'last_name': 'Keindorf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Schornsteinfegermeister',
  'residence': 'Halle',
  'occupation': 'selbstständiger Unternehmer, MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138958,
  'entity_type': 'politician',
  'label': 'Ralf Wunschinski',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138958',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-wunschinski',
  'first_name': 'Ralf',
  'last_name': 'Wunschinski',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Groß- und Außenhandelskaufmann',
  'residence': None,
  'occupation': 'Selbst. Kaufmann',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138917,
  'entity_type': 'politician',
  'label': 'Kay Barthel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138917',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kay-barthel',
  'first_name': 'Kay',
  'last_name': 'Barthel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': None,
  'occupation': 'Büroleiter des Bau- und Verkehrministers',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138875,
  'entity_type': 'politician',
  'label': 'Eduard Jantos',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138875',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eduard-jantos',
  'first_name': 'Eduard',
  'last_name': 'Jantos',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ingenieur für Ökonomie',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138873,
  'entity_type': 'politician',
  'label': 'Reiner Haseloff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138873',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/reiner-haseloff',
  'first_name': 'Reiner',
  'last_name': 'Haseloff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Physiker',
  'residence': None,
  'occupation': 'MdL, Ministerpräsident',
  'statistic_questions': 6,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': 'Dr.'},
 {'id': 138856,
  'entity_type': 'politician',
  'label': 'Dietmar Krause',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138856',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietmar-krause',
  'first_name': 'Dietmar',
  'last_name': 'Krause',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138826,
  'entity_type': 'politician',
  'label': 'Arnd Czapek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138826',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/arnd-czapek',
  'first_name': 'Arnd',
  'last_name': 'Czapek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138823,
  'entity_type': 'politician',
  'label': 'Andreas Schachtschneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138823',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-schachtschneider',
  'first_name': 'Andreas',
  'last_name': 'Schachtschneider',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Berufschullehrer',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138808,
  'entity_type': 'politician',
  'label': 'Volker Bandmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138808',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-bandmann',
  'first_name': 'Volker',
  'last_name': 'Bandmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Service-Techniker, Facharbeiter für Werkzeugmache',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138806,
  'entity_type': 'politician',
  'label': 'Uta Windisch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138806',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uta-windisch',
  'first_name': 'Uta',
  'last_name': 'Windisch',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Informatikerin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138783,
  'entity_type': 'politician',
  'label': 'Steffen Flath',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138783',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/steffen-flath',
  'first_name': 'Steffen',
  'last_name': 'Flath',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Agraingenieur, Staatsminister a. D.',
  'residence': None,
  'occupation': 'Vorsitzender der CDU-Fraktion des Sächsischen Landtages',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138767,
  'entity_type': 'politician',
  'label': 'Rolf Seidel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138767',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rolf-seidel',
  'first_name': 'Rolf',
  'last_name': 'Seidel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Elektromonteur, Diplom-Ingenieurpädagoge',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138752,
  'entity_type': 'politician',
  'label': 'Peter Schowtka',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138752',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-schowtka',
  'first_name': 'Peter',
  'last_name': 'Schowtka',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1945,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betonbauer/ Diplom-Lateinamerikawissenschaftler',
  'residence': None,
  'occupation': 'Landtagsabgeordneter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138710,
  'entity_type': 'politician',
  'label': 'Karin Strempel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karin-strempel',
  'first_name': 'Karin',
  'last_name': 'Strempel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ökonom, Bachelor of Science, Gesundheitsmanagerin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138708,
  'entity_type': 'politician',
  'label': 'Jürgen Petzold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138708',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jurgen-petzold',
  'first_name': 'Jürgen',
  'last_name': 'Petzold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Betriebswirtschaftler',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138679,
  'entity_type': 'politician',
  'label': 'Gesine Matthes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138679',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gesine-matthes',
  'first_name': 'Gesine',
  'last_name': 'Matthes',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'FA für Qualitätskontrolle/Fachwirt Grundstücks- und Wohnungswirtschaft',
  'residence': None,
  'occupation': 'Fachwirtin selbständig/Landtagsabgeordnete',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138662,
  'entity_type': 'politician',
  'label': 'Martin Gillo',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138662',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-gillo',
  'first_name': 'Martin',
  'last_name': 'Gillo',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1945,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Staatsminister a. D., Geschäftsführer',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138649,
  'entity_type': 'politician',
  'label': 'Dietmar Kern',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138649',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dietmar-kern',
  'first_name': 'Dietmar',
  'last_name': 'Kern',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bezirksschornsteinfegermeister',
  'residence': None,
  'occupation': 'selbstständig',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138619,
  'entity_type': 'politician',
  'label': 'Andreas Hähnel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138619',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-haehnel',
  'first_name': 'Andreas',
  'last_name': 'Hähnel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Geschäftsführer',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138614,
  'entity_type': 'politician',
  'label': 'Alfons Kienzle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138614',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfons-kienzle',
  'first_name': 'Alfons',
  'last_name': 'Kienzle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1950,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Buchhändler',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138607,
  'entity_type': 'politician',
  'label': 'Ursula Ferber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138607',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ursula-ferber',
  'first_name': 'Ursula',
  'last_name': 'Ferber',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138605,
  'entity_type': 'politician',
  'label': 'Ulrike Biermann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138605',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrike-biermann',
  'first_name': 'Ulrike',
  'last_name': 'Biermann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Pädagogin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138602,
  'entity_type': 'politician',
  'label': 'Thomas Unold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138602',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-unold',
  'first_name': 'Thomas',
  'last_name': 'Unold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138601,
  'entity_type': 'politician',
  'label': 'Thomas Thiel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138601',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-thiel-0',
  'first_name': 'Thomas',
  'last_name': 'Thiel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138600,
  'entity_type': 'politician',
  'label': 'Thomas Hans',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138600',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-hans',
  'first_name': 'Thomas',
  'last_name': 'Hans',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138587,
  'entity_type': 'politician',
  'label': 'Silke Noss-Schedler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138587',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-noss-schedler',
  'first_name': 'Silke',
  'last_name': 'Noss-Schedler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138585,
  'entity_type': 'politician',
  'label': 'Sigrid Brücker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138585',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/sigrid-bruecker',
  'first_name': 'Sigrid',
  'last_name': 'Brücker',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138583,
  'entity_type': 'politician',
  'label': 'Shanta Ghosh',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138583',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/shanta-ghosh',
  'first_name': 'Shanta',
  'last_name': 'Ghosh',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Psychologin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138576,
  'entity_type': 'politician',
  'label': 'Roman Baltes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138576',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roman-baltes',
  'first_name': 'Roman',
  'last_name': 'Baltes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Student',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138568,
  'entity_type': 'politician',
  'label': 'Rainer Büsser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138568',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-buesser',
  'first_name': 'Rainer',
  'last_name': 'Büsser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138563,
  'entity_type': 'politician',
  'label': 'Peter Kiefer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138563',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-kiefer',
  'first_name': 'Peter',
  'last_name': 'Kiefer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Prakt. Sozialwirt',
  'residence': None,
  'occupation': 'Vorsitzender der CDU Altenwald-Schnappach',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138555,
  'entity_type': 'politician',
  'label': 'Monika Sartorius',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138555',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/monika-sartorius',
  'first_name': 'Monika',
  'last_name': 'Sartorius',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138546,
  'entity_type': 'politician',
  'label': 'Matthias Jochum',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138546',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/matthias-jochum',
  'first_name': 'Matthias',
  'last_name': 'Jochum',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138542,
  'entity_type': 'politician',
  'label': 'Martin Karren',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138542',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-karren',
  'first_name': 'Martin',
  'last_name': 'Karren',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Betriebswirt, Jurist',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138540,
  'entity_type': 'politician',
  'label': 'Markus Uhl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138540',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-uhl',
  'first_name': 'Markus',
  'last_name': 'Uhl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Kaufmann',
  'residence': None,
  'occupation': 'MdB',
  'statistic_questions': 9,
  'statistic_questions_answered': 9,
  'ext_id_bundestagsverwaltung': '2015',
  'qid_wikidata': 'Q33519815',
  'field_title': None},
 {'id': 138535,
  'entity_type': 'politician',
  'label': 'Maria Magdalena Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138535',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/maria-magdalena-schneider',
  'first_name': 'Maria Magdalena',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138515,
  'entity_type': 'politician',
  'label': 'Klaus Dieter Uhrhan',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138515',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-dieter-uhrhan',
  'first_name': 'Klaus Dieter',
  'last_name': 'Uhrhan',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ing. (FH)',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138510,
  'entity_type': 'politician',
  'label': 'Karl Ewald Rauber',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138510',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/karl-ewald-rauber',
  'first_name': 'Karl Ewald',
  'last_name': 'Rauber',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138507,
  'entity_type': 'politician',
  'label': 'Jürgen Schreier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138507',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jurgen-schreier',
  'first_name': 'Jürgen',
  'last_name': 'Schreier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Landesfraktionsvorsitzender im Landtag',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138506,
  'entity_type': 'politician',
  'label': 'Jürgen Manz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138506',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/juergen-manz',
  'first_name': 'Jürgen',
  'last_name': 'Manz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Stadtoberamtsrat',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138503,
  'entity_type': 'politician',
  'label': 'Josef Nollmeyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138503',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-nollmeyer',
  'first_name': 'Josef',
  'last_name': 'Nollmeyer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138496,
  'entity_type': 'politician',
  'label': 'Joachim Bonenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138496',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joachim-bonenberger',
  'first_name': 'Joachim',
  'last_name': 'Bonenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138490,
  'entity_type': 'politician',
  'label': 'Hilde Diehl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138490',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hilde-diehl',
  'first_name': 'Hilde',
  'last_name': 'Diehl',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138488,
  'entity_type': 'politician',
  'label': 'Herbert Scheib',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138488',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/herbert-scheib',
  'first_name': 'Herbert',
  'last_name': 'Scheib',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138486,
  'entity_type': 'politician',
  'label': 'Heinz Klein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138486',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-klein',
  'first_name': 'Heinz',
  'last_name': 'Klein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138483,
  'entity_type': 'politician',
  'label': 'Heinrich Bauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138483',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-bauer',
  'first_name': 'Heinrich',
  'last_name': 'Bauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138481,
  'entity_type': 'politician',
  'label': 'Hans Werner Schoenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138481',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-werner-schoenberger',
  'first_name': 'Hans Werner',
  'last_name': 'Schoenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138465,
  'entity_type': 'politician',
  'label': 'Frank Diversy',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138465',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-diversy',
  'first_name': 'Frank',
  'last_name': 'Diversy',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138464,
  'entity_type': 'politician',
  'label': 'Eveline Päßler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138464',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/eveline-paessler',
  'first_name': 'Eveline',
  'last_name': 'Päßler',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138458,
  'entity_type': 'politician',
  'label': 'Edmund Kütten',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138458',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/edmund-kuetten',
  'first_name': 'Edmund',
  'last_name': 'Kütten',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Landwirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138457,
  'entity_type': 'politician',
  'label': 'Peter Kleinmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138457',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-kleinmann',
  'first_name': 'Peter',
  'last_name': 'Kleinmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dr. Phil., Dipl. Soz.',
  'residence': None,
  'occupation': 'Geschäftsführer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138456,
  'entity_type': 'politician',
  'label': 'Michael Jung',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138456',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-jung',
  'first_name': 'Michael',
  'last_name': 'Jung',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Historiker, Romanist',
  'residence': None,
  'occupation': 'Angest., Regierung Saarland',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138455,
  'entity_type': 'politician',
  'label': 'Markus Gestier',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138455',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/markus-gestier',
  'first_name': 'Markus',
  'last_name': 'Gestier',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studienleiter',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138450,
  'entity_type': 'politician',
  'label': 'Dirk Dillschneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138450',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/dirk-dillschneider',
  'first_name': 'Dirk',
  'last_name': 'Dillschneider',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrer',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138438,
  'entity_type': 'politician',
  'label': 'Christian Woll',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138438',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-woll',
  'first_name': 'Christian',
  'last_name': 'Woll',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138432,
  'entity_type': 'politician',
  'label': 'Britta Hares',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138432',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/britta-hares',
  'first_name': 'Britta',
  'last_name': 'Hares',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Geschäftsführerin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138425,
  'entity_type': 'politician',
  'label': 'Anke Schwindling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138425',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anke-schwindling',
  'first_name': 'Anke',
  'last_name': 'Schwindling',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Angestellte',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138420,
  'entity_type': 'politician',
  'label': 'Andrea Hoffmann-Göritz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138420',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andrea-hoffmann-goeritz',
  'first_name': 'Andrea',
  'last_name': 'Hoffmann-Göritz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138413,
  'entity_type': 'politician',
  'label': 'Wolfgang Scholl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138413',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-scholl',
  'first_name': 'Wolfgang',
  'last_name': 'Scholl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138412,
  'entity_type': 'politician',
  'label': 'Wolfgang Lindenau',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138412',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-lindenau',
  'first_name': 'Wolfgang',
  'last_name': 'Lindenau',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Unternehmer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138406,
  'entity_type': 'politician',
  'label': 'Volker Oberhausen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138406',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-oberhausen',
  'first_name': 'Volker',
  'last_name': 'Oberhausen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138403,
  'entity_type': 'politician',
  'label': 'Vinzenz Winter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138403',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vinzenz-winter',
  'first_name': 'Vinzenz',
  'last_name': 'Winter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankangestellter a.D.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138401,
  'entity_type': 'politician',
  'label': 'Vera Jockers-Kaltz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138401',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/vera-jockers-kaltz',
  'first_name': 'Vera',
  'last_name': 'Jockers-Kaltz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Schaustellerin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138400,
  'entity_type': 'politician',
  'label': 'Uwe Conradt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138400',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/uwe-conradt',
  'first_name': 'Uwe',
  'last_name': 'Conradt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kaufmann',
  'residence': None,
  'occupation': 'Verwaltungsleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138395,
  'entity_type': 'politician',
  'label': 'Ulrich Schnur',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138395',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulrich-schnur',
  'first_name': 'Ulrich',
  'last_name': 'Schnur',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Werkzeugmechaniker',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138390,
  'entity_type': 'politician',
  'label': 'Tobias Hans',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138390',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tobias-hans',
  'first_name': 'Tobias',
  'last_name': 'Hans',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Informationswissenswissenschaftler',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138389,
  'entity_type': 'politician',
  'label': 'Timo Flätgen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138389',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/timo-flaetgen',
  'first_name': 'Timo',
  'last_name': 'Flätgen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Literaturwissenschaftler und Historiker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138387,
  'entity_type': 'politician',
  'label': 'Tim Bernhard Flasche',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138387',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-bernhard-flasche',
  'first_name': 'Tim Bernhard',
  'last_name': 'Flasche',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ministerialrat',
  'residence': None,
  'occupation': 'Ministerialrat',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138385,
  'entity_type': 'politician',
  'label': 'Thomas Schmitt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138385',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-schmitt',
  'first_name': 'Thomas',
  'last_name': 'Schmitt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1973,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138378,
  'entity_type': 'politician',
  'label': 'Stephan Toscani',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138378',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-toscani',
  'first_name': 'Stephan',
  'last_name': 'Toscani',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Landtagspräsident, MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138377,
  'entity_type': 'politician',
  'label': 'Stephan Müller-Kattwinkel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138377',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stephan-mueller-kattwinkel',
  'first_name': 'Stephan',
  'last_name': 'Müller-Kattwinkel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankfachwirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138373,
  'entity_type': 'politician',
  'label': 'Stefan Thielen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138373',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-thielen',
  'first_name': 'Stefan',
  'last_name': 'Thielen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkaufmann, Studium Internationale Beziehungen und Internationales Management',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 3,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138371,
  'entity_type': 'politician',
  'label': 'Stefan Rech',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138371',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-rech',
  'first_name': 'Stefan',
  'last_name': 'Rech',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Techn. Angestellter',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138369,
  'entity_type': 'politician',
  'label': 'Stefan Palm',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138369',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-palm',
  'first_name': 'Stefan',
  'last_name': 'Palm',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Ing. (FH) Fachrichtung Agrar',
  'residence': None,
  'occupation': 'Wissenschaftlicher Mitarbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138367,
  'entity_type': 'politician',
  'label': 'Stefan Brand',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138367',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-brand',
  'first_name': 'Stefan',
  'last_name': 'Brand',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Offizier',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138361,
  'entity_type': 'politician',
  'label': 'Silke Kohl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138361',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/silke-kohl',
  'first_name': 'Silke',
  'last_name': 'Kohl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138349,
  'entity_type': 'politician',
  'label': 'Ruth Meyer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138349',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ruth-meyer',
  'first_name': 'Ruth',
  'last_name': 'Meyer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magisterstudium der Sozialpsychologie, Erziehungs- und Politikwissenschaft, Studium der Sprechwissenschaften und Sprecherziehung',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138346,
  'entity_type': 'politician',
  'label': 'Roland Theis',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138346',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/roland-theis',
  'first_name': 'Roland',
  'last_name': 'Theis',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Staatssekretär im Saarländischen Justizministerium',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138342,
  'entity_type': 'politician',
  'label': 'Raphael Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138342',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/raphael-schaefer',
  'first_name': 'Raphael',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1981,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138339,
  'entity_type': 'politician',
  'label': 'Ralf Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138339',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ralf-mueller-0',
  'first_name': 'Ralf',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1964,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Architekt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138330,
  'entity_type': 'politician',
  'label': 'Philip Hoffmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138330',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/philip-hoffmann',
  'first_name': 'Philip',
  'last_name': 'Hoffmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1988,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Student',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138326,
  'entity_type': 'politician',
  'label': 'Peter Strobel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138326',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-strobel',
  'first_name': 'Peter',
  'last_name': 'Strobel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann',
  'residence': None,
  'occupation': 'MdL, Minister für Finanzen und Europa, Minister der Justiz',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138324,
  'entity_type': 'politician',
  'label': 'Peter Jacoby',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138324',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/peter-jacoby',
  'first_name': 'Peter',
  'last_name': 'Jacoby',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom Soziologe',
  'residence': None,
  'occupation': 'Abgeordneter und Minister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q111138',
  'field_title': None},
 {'id': 138319,
  'entity_type': 'politician',
  'label': 'Patrick Waldraff',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138319',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/patrick-waldraff',
  'first_name': 'Patrick',
  'last_name': 'Waldraff',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Student',
  'residence': None,
  'occupation': None,
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138314,
  'entity_type': 'politician',
  'label': 'Norbert Moy',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138314',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-moy',
  'first_name': 'Norbert',
  'last_name': 'Moy',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studienrat',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138310,
  'entity_type': 'politician',
  'label': 'Nicolas Bernd Lorenz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138310',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/nicolas-bernd-lorenz',
  'first_name': 'Nicolas Bernd',
  'last_name': 'Lorenz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bildungsassistent',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138307,
  'entity_type': 'politician',
  'label': 'Monika Bachmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138307',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/monika-bachmann',
  'first_name': 'Monika',
  'last_name': 'Bachmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1950,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Bankkauffrau',
  'residence': None,
  'occupation': 'MdL, Ministerin für Soziales, Gesundheit, Frauen und Familie',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138306,
  'entity_type': 'politician',
  'label': 'Michael Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138306',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-schmidt-0',
  'first_name': 'Michael',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1969,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Berufssoldat',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138301,
  'entity_type': 'politician',
  'label': 'Michael Dietz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138301',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-dietz-0',
  'first_name': 'Michael',
  'last_name': 'Dietz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138290,
  'entity_type': 'politician',
  'label': 'Marco Forster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138290',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marco-forster',
  'first_name': 'Marco',
  'last_name': 'Forster',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Student',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138288,
  'entity_type': 'politician',
  'label': 'Manfred Zenner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138288',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-zenner',
  'first_name': 'Manfred',
  'last_name': 'Zenner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Regierungsbeschäftigter',
  'residence': None,
  'occupation': 'Business Travel Manager, Haushaltssachbearbeiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138287,
  'entity_type': 'politician',
  'label': 'Manfred Schuler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138287',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/manfred-schuler',
  'first_name': 'Manfred',
  'last_name': 'Schuler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kriminalbeamter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138281,
  'entity_type': 'politician',
  'label': 'Lothar Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138281',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/lothar-schmidt',
  'first_name': 'Lothar',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Oberstudiendirektor',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138274,
  'entity_type': 'politician',
  'label': 'Kornelia Anspach-Papa',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138274',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kornelia-anspach-papa',
  'first_name': 'Kornelia',
  'last_name': 'Anspach-Papa',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Notariats Fachfrau',
  'residence': None,
  'occupation': 'Bankangestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138273,
  'entity_type': 'politician',
  'label': 'Klaus Meiser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138273',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/klaus-meiser',
  'first_name': 'Klaus',
  'last_name': 'Meiser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138266,
  'entity_type': 'politician',
  'label': 'Jutta Schmitt-Lang',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138266',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jutta-schmitt-lang',
  'first_name': 'Jutta',
  'last_name': 'Schmitt-Lang',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1982,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehrerin',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138258,
  'entity_type': 'politician',
  'label': 'Jörg Schwindling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138258',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/joerg-schwindling',
  'first_name': 'Jörg',
  'last_name': 'Schwindling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieur',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138257,
  'entity_type': 'politician',
  'label': 'Jochen Scharf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138257',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jochen-scharf',
  'first_name': 'Jochen',
  'last_name': 'Scharf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'IT-Systemelektroniker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138253,
  'entity_type': 'politician',
  'label': 'Jessica Theobald',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138253',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jessica-theobald',
  'first_name': 'Jessica',
  'last_name': 'Theobald',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ergotherapeutin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138252,
  'entity_type': 'politician',
  'label': 'Jens Vollmar',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138252',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/jens-vollmar',
  'first_name': 'Jens',
  'last_name': 'Vollmar',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138246,
  'entity_type': 'politician',
  'label': 'Iris Panter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138246',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/iris-panter',
  'first_name': 'Iris',
  'last_name': 'Panter',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Anwältin',
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138245,
  'entity_type': 'politician',
  'label': 'Irene Schuster',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138245',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/irene-schuster',
  'first_name': 'Irene',
  'last_name': 'Schuster',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Pflegedirektorin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138241,
  'entity_type': 'politician',
  'label': 'Ines Killmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138241',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ines-killmann',
  'first_name': 'Ines',
  'last_name': 'Killmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufm. Angestellte',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138238,
  'entity_type': 'politician',
  'label': 'Holger Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138238',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/holger-schaefer',
  'first_name': 'Holger',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138232,
  'entity_type': 'politician',
  'label': 'Heike Scherschel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138232',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-scherschel',
  'first_name': 'Heike',
  'last_name': 'Scherschel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138230,
  'entity_type': 'politician',
  'label': 'Heike Erfurt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138230',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heike-erfurt',
  'first_name': 'Heike',
  'last_name': 'Erfurt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sachbearbeiterin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138225,
  'entity_type': 'politician',
  'label': 'Hans Ley',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138225',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-ley',
  'first_name': 'Hans',
  'last_name': 'Ley',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Landtagspräsident',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138224,
  'entity_type': 'politician',
  'label': 'Hans-Jürgen Altes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138224',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-jurgen-altes',
  'first_name': 'Hans-Jürgen',
  'last_name': 'Altes',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriemeister Druck',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138222,
  'entity_type': 'politician',
  'label': 'Hans Gerhard Jene',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138222',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/hans-gerhard-jene',
  'first_name': 'Hans Gerhard',
  'last_name': 'Jene',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138218,
  'entity_type': 'politician',
  'label': 'Günter Heinrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138218',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guenter-heinrich',
  'first_name': 'Günter',
  'last_name': 'Heinrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium an der Verwaltungs- und Wirtschaftsakademie des Saarlandes',
  'residence': None,
  'occupation': 'MdL, Vizepräsident des \u2028Landtags',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138216,
  'entity_type': 'politician',
  'label': 'Günter Becker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138216',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/guenter-becker',
  'first_name': 'Günter',
  'last_name': 'Becker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lohnverwaltungswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138213,
  'entity_type': 'politician',
  'label': 'Gisela Rink',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138213',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gisela-rink',
  'first_name': 'Gisela',
  'last_name': 'Rink',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Erzieherin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138209,
  'entity_type': 'politician',
  'label': 'Gerhard Welter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138209',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-welter',
  'first_name': 'Gerhard',
  'last_name': 'Welter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138205,
  'entity_type': 'politician',
  'label': 'Georg Jungmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138205',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-jungmann',
  'first_name': 'Georg',
  'last_name': 'Jungmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1956,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Finanzwirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138202,
  'entity_type': 'politician',
  'label': 'Gabriele Schäfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138202',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-schafer',
  'first_name': 'Gabriele',
  'last_name': 'Schäfer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Staatssekretärin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138200,
  'entity_type': 'politician',
  'label': 'Gabriele Herrmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138200',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-herrmann',
  'first_name': 'Gabriele',
  'last_name': 'Herrmann',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1975,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Kauffrau',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138199,
  'entity_type': 'politician',
  'label': 'Gabriele Harpers',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138199',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gabriele-harpers',
  'first_name': 'Gabriele',
  'last_name': 'Harpers',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Angestellte',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138198,
  'entity_type': 'politician',
  'label': 'Frank Rolle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138198',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-rolle',
  'first_name': 'Frank',
  'last_name': 'Rolle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'stellv. IGBCE Bezirksleiter',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138196,
  'entity_type': 'politician',
  'label': 'Florian Gillen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138196',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/florian-gillen',
  'first_name': 'Florian',
  'last_name': 'Gillen',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138194,
  'entity_type': 'politician',
  'label': 'Felix Heiner Emanuel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138194',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/felix-heiner-emanuel',
  'first_name': 'Felix Heiner',
  'last_name': 'Emanuel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. Verwaltungswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138188,
  'entity_type': 'politician',
  'label': 'Elke Masurek-Suarez-Lopez',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138188',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elke-masurek-suarez-lopez',
  'first_name': 'Elke',
  'last_name': 'Masurek-Suarez-Lopez',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1967,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Literatur-und Sprachwissenschaftlerin',
  'residence': None,
  'occupation': 'Regierungsangestellte',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138186,
  'entity_type': 'politician',
  'label': 'Elisabeth Biwer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138186',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/elisabeth-biwer',
  'first_name': 'Elisabeth',
  'last_name': 'Biwer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hausfrau',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138185,
  'entity_type': 'politician',
  'label': 'Egbert Ulrich',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138185',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/egbert-ulrich',
  'first_name': 'Egbert',
  'last_name': 'Ulrich',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sozialsekretär',
  'residence': None,
  'occupation': 'Mitglied des Landtages des Saarlandes',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138175,
  'entity_type': 'politician',
  'label': 'Frank Finkler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138175',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/frank-finkler',
  'first_name': 'Frank',
  'last_name': 'Finkler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Kaufmann',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138174,
  'entity_type': 'politician',
  'label': 'Erika Heit',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138174',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erika-heit',
  'first_name': 'Erika',
  'last_name': 'Heit',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studienrätin',
  'residence': None,
  'occupation': 'Studienrätin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138160,
  'entity_type': 'politician',
  'label': 'Daniel Kempf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138160',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/daniel-kempf',
  'first_name': 'Daniel',
  'last_name': 'Kempf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ing.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138151,
  'entity_type': 'politician',
  'label': 'Christina Haßdenteufel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138151',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christina-hassdenteufel',
  'first_name': 'Christina',
  'last_name': 'Haßdenteufel',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138147,
  'entity_type': 'politician',
  'label': 'Christian Zimmer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138147',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-zimmer',
  'first_name': 'Christian',
  'last_name': 'Zimmer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Polizist',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138145,
  'entity_type': 'politician',
  'label': 'Christian Gläser',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138145',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-glaeser',
  'first_name': 'Christian',
  'last_name': 'Gläser',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'Beamter im Landesdienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138140,
  'entity_type': 'politician',
  'label': 'Björn Decker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138140',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bjorn-decker',
  'first_name': 'Björn',
  'last_name': 'Decker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1979,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Sparkassen Betriebswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138135,
  'entity_type': 'politician',
  'label': 'Bernd Wegner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138135',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-wegner',
  'first_name': 'Bernd',
  'last_name': 'Wegner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Schuhmachermeister',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138132,
  'entity_type': 'politician',
  'label': 'Bernd Müller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138132',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-muller-0',
  'first_name': 'Bernd',
  'last_name': 'Müller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Regierungsdirektor',
  'residence': None,
  'occupation': 'Referatsleiter im Innenministerium',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138124,
  'entity_type': 'politician',
  'label': 'Annegret Kramp-Karrenbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138124',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/annegret-kramp-karrenbauer',
  'first_name': 'Annegret',
  'last_name': 'Kramp-Karrenbauer',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechts- und Politikwissenschaft',
  'residence': None,
  'occupation': 'Ministerpräsidentin des Saarlandes, MdL',
  'statistic_questions': 1,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q71359',
  'field_title': None},
 {'id': 138120,
  'entity_type': 'politician',
  'label': 'Anja Wagner-Scheid',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138120',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/anja-wagner-scheid',
  'first_name': 'Anja',
  'last_name': 'Wagner-Scheid',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1974,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Magister in Literatur- und Sprachwissenschaften sowie Politikwissenschaften',
  'residence': None,
  'occupation': 'Direktorin des Landesamtes für Soziales',
  'statistic_questions': 1,
  'statistic_questions_answered': 1,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138114,
  'entity_type': 'politician',
  'label': 'Alfred Herr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138114',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alfred-herr',
  'first_name': 'Alfred',
  'last_name': 'Herr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1948,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Hochbautechniker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138111,
  'entity_type': 'politician',
  'label': 'Alexandra Heinen',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138111',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/alexandra-heinen',
  'first_name': 'Alexandra',
  'last_name': 'Heinen',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138090,
  'entity_type': 'politician',
  'label': 'Wolfgang Reichel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138090',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-reichel',
  'first_name': 'Wolfgang',
  'last_name': 'Reichel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138065,
  'entity_type': 'politician',
  'label': 'Stefan Pohl',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138065',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-pohl',
  'first_name': 'Stefan',
  'last_name': 'Pohl',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1978,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Kaufmann im Groß- und Außenhandel, Weiterbildung zum Betriebswirt',
  'residence': None,
  'occupation': 'Kaufmännischer Leiter, Prokurist',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138053,
  'entity_type': 'politician',
  'label': 'Bernd Rosenberger',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138053',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bernd-rosenberger',
  'first_name': 'Bernd',
  'last_name': 'Rosenberger',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138041,
  'entity_type': 'politician',
  'label': 'Michael Wöhler',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138041',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-wohler',
  'first_name': 'Michael',
  'last_name': 'Wöhler',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138038,
  'entity_type': 'politician',
  'label': 'Michael Gasiorek',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138038',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-gasiorek',
  'first_name': 'Michael',
  'last_name': 'Gasiorek',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Lehramt gymnasiale Oberstufe',
  'residence': None,
  'occupation': 'Lehrer',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138033,
  'entity_type': 'politician',
  'label': 'Martin Hahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138033',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/martin-hahn-0',
  'first_name': 'Martin',
  'last_name': 'Hahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1963,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Vers.-Kaufmann',
  'residence': None,
  'occupation': 'selbst. Geschäftsstellenleiter',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138023,
  'entity_type': 'politician',
  'label': 'Marcus Klein',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138023',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/marcus-klein',
  'first_name': 'Marcus',
  'last_name': 'Klein',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Jurist',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': 2,
  'statistic_questions_answered': 2,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 138009,
  'entity_type': 'politician',
  'label': 'Kirsten Beetz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/138009',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/kirsten-beetz',
  'first_name': 'Kirsten',
  'last_name': 'Beetz',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1961,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Rechtsanwältin',
  'residence': None,
  'occupation': 'Rechtsanwältin',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137949,
  'entity_type': 'politician',
  'label': 'Christian Beilmann',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137949',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-beilmann',
  'first_name': 'Christian',
  'last_name': 'Beilmann',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1980,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Physiker',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137947,
  'entity_type': 'politician',
  'label': 'Bertrand Adams',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137947',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bertrand-adams',
  'first_name': 'Bertrand',
  'last_name': 'Adams',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Volkswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137938,
  'entity_type': 'politician',
  'label': 'Andreas Biebricher',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137938',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/andreas-biebricher',
  'first_name': 'Andreas',
  'last_name': 'Biebricher',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1968,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Historiker',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137933,
  'entity_type': 'politician',
  'label': 'Wolfgang München',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137933',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/wolfgang-munchen',
  'first_name': 'Wolfgang',
  'last_name': 'München',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1952,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gymnasiallehrer',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137927,
  'entity_type': 'politician',
  'label': 'Walter Wirz',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137927',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/walter-wirz',
  'first_name': 'Walter',
  'last_name': 'Wirz',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1947,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Ingenieur (FH)',
  'residence': None,
  'occupation': 'MdL, selbstständiger Architekt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137923,
  'entity_type': 'politician',
  'label': 'Volker Seibold',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137923',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/volker-seibold',
  'first_name': 'Volker',
  'last_name': 'Seibold',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137918,
  'entity_type': 'politician',
  'label': 'Ulla Schmidt',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137918',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/ulla-schmidt-0',
  'first_name': 'Ulla',
  'last_name': 'Schmidt',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1942,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekauffrau',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137908,
  'entity_type': 'politician',
  'label': 'Thomas Günther',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137908',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-gunther-0',
  'first_name': 'Thomas',
  'last_name': 'Günther',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Gebietsleiter im Außendienst, Außendienstkaufmann',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137886,
  'entity_type': 'politician',
  'label': 'Rainer Reiß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137886',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/rainer-reiss',
  'first_name': 'Rainer',
  'last_name': 'Reiß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1960,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Industriekaufmann, BWL-Studium',
  'residence': None,
  'occupation': 'selbstständiger Kaufmann; politisches Amt: Bürgermeister der Gemeinde Birkenheide',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137883,
  'entity_type': 'politician',
  'label': 'Michael Pietsch',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137883',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-pietsch',
  'first_name': 'Michael',
  'last_name': 'Pietsch',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Arzt und Hochschullehrer',
  'residence': None,
  'occupation': 'Stellv. Leiter der Abteilung für Hygiene und Umweltmedizin der Universität Mainz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137859,
  'entity_type': 'politician',
  'label': 'Michael Kahn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137859',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-kahn',
  'first_name': 'Michael',
  'last_name': 'Kahn',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1957,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Fachanwalt für Sozialrecht',
  'residence': None,
  'occupation': 'Rechtsanwalt',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137857,
  'entity_type': 'politician',
  'label': 'Michael Hörter',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137857',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/michael-horter',
  'first_name': 'Michael',
  'last_name': 'Hörter',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1958,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium katholische Theologie und Germanistik, Studienrat a.D.',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137814,
  'entity_type': 'politician',
  'label': 'Josef Keller',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137814',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-keller',
  'first_name': 'Josef',
  'last_name': 'Keller',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1949,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium für das Lehramt an Grund- und Hauptschulen, Grundschulrektor a.D.',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137812,
  'entity_type': 'politician',
  'label': 'Johannes Lauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137812',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/johannes-lauer',
  'first_name': 'Johannes',
  'last_name': 'Lauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Selbständig',
  'residence': None,
  'occupation': 'Dachdecker-Klempnermeister',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137794,
  'entity_type': 'politician',
  'label': 'Herbert Schneiders',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137794',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/herbert-schneiders',
  'first_name': 'Herbert',
  'last_name': 'Schneiders',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Ass. jur., Jurist',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137791,
  'entity_type': 'politician',
  'label': 'Heinz-Hermann Schnabel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137791',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinz-hermann-schnabel',
  'first_name': 'Heinz-Hermann',
  'last_name': 'Schnabel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Verwaltungswirt (FH), Beigeordneter a. D.',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137790,
  'entity_type': 'politician',
  'label': 'Heinrich Jöckel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137790',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/heinrich-jockel',
  'first_name': 'Heinrich',
  'last_name': 'Jöckel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1959,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Rechtswissenschaften',
  'residence': None,
  'occupation': 'Fachanwalt für Steuerrecht in der Rechtsabteilung der IHK für die Pfalz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137768,
  'entity_type': 'politician',
  'label': 'Gerd Schreiner',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137768',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerd-schreiner',
  'first_name': 'Gerd',
  'last_name': 'Schreiner',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1970,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'selbständiger Architekt',
  'residence': 'Mainz',
  'occupation': 'MdL',
  'statistic_questions': 4,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137764,
  'entity_type': 'politician',
  'label': 'Georg Kern',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137764',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/georg-kern',
  'first_name': 'Georg',
  'last_name': 'Kern',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': '1.) Glaser   2.) Bürokaufmann   3.) Dipl.-Betriebswirt (FH)',
  'residence': None,
  'occupation': 'Hauptsachbearbeiter in der Finanzabteilung der Deutschen Rentenversicherung Baden-Württemberg, Karlsruhe/ Stuttgart',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137746,
  'entity_type': 'politician',
  'label': 'Erhard Lelle',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137746',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/erhard-lelle',
  'first_name': 'Erhard',
  'last_name': 'Lelle',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1946,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium an der EWH Landau, Hauptlehrer a.D.',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137739,
  'entity_type': 'politician',
  'label': 'Thomas Höfer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137739',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-hoefer',
  'first_name': 'Thomas',
  'last_name': 'Höfer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1955,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl. agr. Ing,',
  'residence': None,
  'occupation': 'Schlossmühle Dr. Höfer, Präsident vom Weinbauverband Nahe',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137735,
  'entity_type': 'politician',
  'label': 'Norbert Mittrücker',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137735',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-mittruecker',
  'first_name': 'Norbert',
  'last_name': 'Mittrücker',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Ingenieur Elektrotechnik',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137732,
  'entity_type': 'politician',
  'label': 'Josef Rosenbauer',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137732',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/josef-rosenbauer',
  'first_name': 'Josef',
  'last_name': 'Rosenbauer',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Humanmedizin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137729,
  'entity_type': 'politician',
  'label': 'Gerhard Hanke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137729',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/gerhard-hanke',
  'first_name': 'Gerhard',
  'last_name': 'Hanke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1951,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Diplom-Forstwirt',
  'residence': None,
  'occupation': 'Leiter des Forstamtes Rheinhessen',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137727,
  'entity_type': 'politician',
  'label': 'Christoph Böhr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137727',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christoph-bohr',
  'first_name': 'Christoph',
  'last_name': 'Böhr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1954,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studium der Politikwissenschaft, Philosophie, Germanistik und Neueren Geschichte',
  'residence': None,
  'occupation': 'Landes- und Fraktionsvorsitzender der CDU Rheinland-Pfalz',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137726,
  'entity_type': 'politician',
  'label': 'Axel Wilke',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137726',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/axel-wilke',
  'first_name': 'Axel',
  'last_name': 'Wilke',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Notar',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137724,
  'entity_type': 'politician',
  'label': 'Adolf Weiland',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137724',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/adolf-weiland',
  'first_name': 'Adolf',
  'last_name': 'Weiland',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1953,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Studienrat',
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137710,
  'entity_type': 'politician',
  'label': 'Christine Schneider',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137710',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christine-schneider',
  'first_name': 'Christine',
  'last_name': 'Schneider',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Tischlerin',
  'residence': None,
  'occupation': 'MdEP',
  'statistic_questions': 14,
  'statistic_questions_answered': 11,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': 'Q1083771',
  'field_title': None},
 {'id': 137707,
  'entity_type': 'politician',
  'label': 'Christian Gauf',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137707',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/christian-gauf',
  'first_name': 'Christian',
  'last_name': 'Gauf',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1965,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Oberinspektor im Notardienst',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137703,
  'entity_type': 'politician',
  'label': 'Brigitte Hayn',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137703',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/brigitte-hayn',
  'first_name': 'Brigitte',
  'last_name': 'Hayn',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': None,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Dipl.-Übersetzerin\nzur Homepage der Fraktion\nDipl.-Übersetzerin',
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137701,
  'entity_type': 'politician',
  'label': 'Bettina Dickes',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137701',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/bettina-dickes',
  'first_name': 'Bettina',
  'last_name': 'Dickes',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1971,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'MdL',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137692,
  'entity_type': 'politician',
  'label': 'Bärbel Glas',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137692',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/barbel-glas',
  'first_name': 'Bärbel',
  'last_name': 'Glas',
  'birth_name': None,
  'sex': 'f',
  'year_of_birth': 1962,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Juristin',
  'residence': None,
  'occupation': 'Fachanwältin für Familienrecht',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137673,
  'entity_type': 'politician',
  'label': 'Tim Salgert',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137673',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/tim-salgert',
  'first_name': 'Tim',
  'last_name': 'Salgert',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1984,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Ratsherr Stadt Lohmar, Kreistagsabgeordneter des Rhein-Sieg-Kreises, Student',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137663,
  'entity_type': 'politician',
  'label': 'Thomas Bahr',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137663',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/thomas-bahr',
  'first_name': 'Thomas',
  'last_name': 'Bahr',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1966,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': None,
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137652,
  'entity_type': 'politician',
  'label': 'Stefan Hebbel',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137652',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/stefan-hebbel',
  'first_name': 'Stefan',
  'last_name': 'Hebbel',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1976,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': None,
  'residence': None,
  'occupation': 'Kriminalhauptkommissar',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137602,
  'entity_type': 'politician',
  'label': 'Oliver Fröhling',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137602',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/oliver-froehling',
  'first_name': 'Oliver',
  'last_name': 'Fröhling',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1977,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Betriebswirt (VWA)',
  'residence': None,
  'occupation': 'Serviceleiter für drei Filialen (Autohaus)',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None},
 {'id': 137598,
  'entity_type': 'politician',
  'label': 'Norbert Neß',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/politicians/137598',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/profile/norbert-ness',
  'first_name': 'Norbert',
  'last_name': 'Neß',
  'birth_name': None,
  'sex': 'm',
  'year_of_birth': 1972,
  'party': {'id': 2,
   'entity_type': 'party',
   'label': 'CDU',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parties/2'},
  'party_past': None,
  'education': 'Journalist, Pressesprecher',
  'residence': None,
  'occupation': 'Referatsleiter in einem Ministerium',
  'statistic_questions': None,
  'statistic_questions_answered': None,
  'ext_id_bundestagsverwaltung': None,
  'qid_wikidata': None,
  'field_title': None}]

Aktuelle Abstimmungen im Bundestag#

https://www.abgeordnetenwatch.de/api/entitaeten/poll

poll_id = 4876
url = f'https://www.abgeordnetenwatch.de/api/v2/polls/{poll_id}?'
data = request_data(url)
data
{'id': 4876,
 'entity_type': 'node',
 'label': 'Chancen-Aufenthaltsrecht',
 'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
 'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht',
 'field_accepted': True,
 'field_committees': [{'id': 4416,
   'entity_type': 'node',
   'label': 'Ausschuss für Inneres und Heimat',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/committees/4416',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/ausschuesse/ausschuss-fuer-inneres-und-heimat'}],
 'field_intro': '<p>Mit dem <a class="link-read-more" href="https://dserver.bundestag.de/btd/20/037/2003717.pdf" target="_blank">Gesetzentwurf </a>der Bundesregierung sollen Ausländer:innen, die mindestens 5 Jahre geduldet in Deutschland leben, ein Chancen-Aufenthaltsrecht erhalten. Ihnen soll dadurch die nötige Zeit gewährt werden, um alle Voraussetzungen für ein dauerhaftes Bleiberecht zu erfüllen.</p>\r\n\r\n<p>Mit 371 Stimmen wurde der Gesetzentwurf von Seiten der Koalitionsfraktionen <strong>angenommen</strong>. Insgesamt 226 Gegenstimmen kamen aus den Fraktionen CDU/CSU und AfD. Es gab 57 Enthaltungen. Darunter entfielen 20 Enthaltungen auf Abgeordnete der Unionsfraktion, auch zwei FDP-Abgeordnete enthielten sich. Die Fraktion DIE LINKE enthielt sich ebenfalls.</p>\r\n',
 'field_legislature': {'id': 132,
  'entity_type': 'parliament_period',
  'label': 'Bundestag 2021 - 2025',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/parliament-periods/132',
  'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag'},
 'field_poll_date': '2022-12-02',
 'field_related_links': [{'uri': 'https://dserver.bundestag.de/btd/20/037/2003717.pdf',
   'title': 'Gesetzentwurf der Bundesregierung'},
  {'uri': 'https://dserver.bundestag.de/btd/20/047/2004700.pdf',
   'title': 'Beschlussempfehlung des Ausschusses für Inneres und Heimat'},
  {'uri': 'https://dserver.bundestag.de/btd/20/018/2001850.pdf',
   'title': 'Gesetzentwurf der Fraktion Die Linke'},
  {'uri': 'https://dserver.bundestag.de/btd/20/043/2004327.pdf',
   'title': 'Gesetzentwurf zur Beschleunigung des Asylgerichtsverfahren (von der Bundesregierung)'}],
 'field_topics': [{'id': 25,
   'entity_type': 'taxonomy_term',
   'label': 'Migration und Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/topics/25',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/themen-dip21/migration-und-aufenthaltsrecht'}]}
# Alle Abstimmungen der Abgeordneten
poll_id = '4876'
url = f'https://www.abgeordnetenwatch.de/api/v2/votes?poll={poll_id}'
data = request_data(url)
data
[{'id': 492791,
  'entity_type': 'vote',
  'label': 'Uwe Witt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492791',
  'mandate': {'id': 54095,
   'entity_type': 'candidacy_mandate',
   'label': 'Uwe Witt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54095'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492790,
  'entity_type': 'vote',
  'label': 'Stefan Seidler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492790',
  'mandate': {'id': 54098,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Seidler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54098'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492789,
  'entity_type': 'vote',
  'label': 'Johannes Huber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492789',
  'mandate': {'id': 53620,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Huber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53620'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492788,
  'entity_type': 'vote',
  'label': 'Matthias Helferich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492788',
  'mandate': {'id': 53406,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Helferich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53406'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492787,
  'entity_type': 'vote',
  'label': 'Robert Farle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492787',
  'mandate': {'id': 53779,
   'entity_type': 'candidacy_mandate',
   'label': 'Robert Farle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53779'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492786,
  'entity_type': 'vote',
  'label': 'Joana Cotar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492786',
  'mandate': {'id': 53544,
   'entity_type': 'candidacy_mandate',
   'label': 'Joana Cotar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53544'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 325,
   'entity_type': 'fraction',
   'label': 'fraktionslos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/325'}},
 {'id': 492785,
  'entity_type': 'vote',
  'label': 'Janine Wissler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492785',
  'mandate': {'id': 54114,
   'entity_type': 'candidacy_mandate',
   'label': 'Janine Wissler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54114'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492784,
  'entity_type': 'vote',
  'label': 'Sahra Wagenknecht - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492784',
  'mandate': {'id': 53436,
   'entity_type': 'candidacy_mandate',
   'label': 'Sahra Wagenknecht (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53436'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492783,
  'entity_type': 'vote',
  'label': 'Kathrin Vogler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492783',
  'mandate': {'id': 53439,
   'entity_type': 'candidacy_mandate',
   'label': 'Kathrin Vogler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53439'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492782,
  'entity_type': 'vote',
  'label': 'Alexander Ulrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492782',
  'mandate': {'id': 53591,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Ulrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53591'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492781,
  'entity_type': 'vote',
  'label': 'Jessica Tatti - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492781',
  'mandate': {'id': 53723,
   'entity_type': 'candidacy_mandate',
   'label': 'Jessica Tatti (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53723'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492780,
  'entity_type': 'vote',
  'label': 'Petra Sitte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492780',
  'mandate': {'id': 53504,
   'entity_type': 'candidacy_mandate',
   'label': 'Petra Sitte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53504'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492779,
  'entity_type': 'vote',
  'label': 'Bernd Riexinger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492779',
  'mandate': {'id': 53721,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Riexinger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53721'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492778,
  'entity_type': 'vote',
  'label': 'Martina Renner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492778',
  'mandate': {'id': 53566,
   'entity_type': 'candidacy_mandate',
   'label': 'Martina Renner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53566'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492777,
  'entity_type': 'vote',
  'label': 'Heidi Reichinnek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492777',
  'mandate': {'id': 53483,
   'entity_type': 'candidacy_mandate',
   'label': 'Heidi Reichinnek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53483'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492776,
  'entity_type': 'vote',
  'label': 'Victor Perli - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492776',
  'mandate': {'id': 53482,
   'entity_type': 'candidacy_mandate',
   'label': 'Victor Perli (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53482'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492775,
  'entity_type': 'vote',
  'label': 'Sören Pellmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492775',
  'mandate': {'id': 53856,
   'entity_type': 'candidacy_mandate',
   'label': 'Sören Pellmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53856'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492774,
  'entity_type': 'vote',
  'label': 'Petra Pau - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492774',
  'mandate': {'id': 54105,
   'entity_type': 'candidacy_mandate',
   'label': 'Petra Pau (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54105'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492773,
  'entity_type': 'vote',
  'label': 'Zaklin Nastić - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492773',
  'mandate': {'id': 53993,
   'entity_type': 'candidacy_mandate',
   'label': 'Zaklin Nastić (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53993'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492772,
  'entity_type': 'vote',
  'label': 'Cornelia Möhring - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492772',
  'mandate': {'id': 54097,
   'entity_type': 'candidacy_mandate',
   'label': 'Cornelia Möhring (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54097'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492771,
  'entity_type': 'vote',
  'label': 'Amira Mohamed Ali - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492771',
  'mandate': {'id': 53481,
   'entity_type': 'candidacy_mandate',
   'label': 'Amira Mohamed Ali (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53481'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492770,
  'entity_type': 'vote',
  'label': 'Pascal Meiser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492770',
  'mandate': {'id': 53510,
   'entity_type': 'candidacy_mandate',
   'label': 'Pascal Meiser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53510'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492769,
  'entity_type': 'vote',
  'label': 'Thomas Lutze - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492769',
  'mandate': {'id': 53662,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Lutze (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53662'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492768,
  'entity_type': 'vote',
  'label': 'Gesine Lötzsch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492768',
  'mandate': {'id': 53791,
   'entity_type': 'candidacy_mandate',
   'label': 'Gesine Lötzsch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53791'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492767,
  'entity_type': 'vote',
  'label': 'Christian Leye - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492767',
  'mandate': {'id': 53440,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Leye (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53440'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492766,
  'entity_type': 'vote',
  'label': 'Ralph Lenkert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492766',
  'mandate': {'id': 53565,
   'entity_type': 'candidacy_mandate',
   'label': 'Ralph Lenkert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53565'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492765,
  'entity_type': 'vote',
  'label': 'Caren Lay - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492765',
  'mandate': {'id': 53521,
   'entity_type': 'candidacy_mandate',
   'label': 'Caren Lay (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53521'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492764,
  'entity_type': 'vote',
  'label': 'Ina Latendorf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492764',
  'mandate': {'id': 53987,
   'entity_type': 'candidacy_mandate',
   'label': 'Ina Latendorf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53987'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492763,
  'entity_type': 'vote',
  'label': 'Jan Korte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492763',
  'mandate': {'id': 53503,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Korte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53503'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492762,
  'entity_type': 'vote',
  'label': 'Andrej Hunko - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492762',
  'mandate': {'id': 53438,
   'entity_type': 'candidacy_mandate',
   'label': 'Andrej Hunko (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53438'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492761,
  'entity_type': 'vote',
  'label': 'Susanne Hennig-Wellsow - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492761',
  'mandate': {'id': 53564,
   'entity_type': 'candidacy_mandate',
   'label': 'Susanne Hennig-Wellsow (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53564'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492760,
  'entity_type': 'vote',
  'label': 'André Hahn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492760',
  'mandate': {'id': 53522,
   'entity_type': 'candidacy_mandate',
   'label': 'André Hahn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53522'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492759,
  'entity_type': 'vote',
  'label': 'Gregor Gysi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492759',
  'mandate': {'id': 53789,
   'entity_type': 'candidacy_mandate',
   'label': 'Gregor Gysi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53789'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492758,
  'entity_type': 'vote',
  'label': 'Ates Gürpinar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492758',
  'mandate': {'id': 53659,
   'entity_type': 'candidacy_mandate',
   'label': 'Ates Gürpinar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53659'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492757,
  'entity_type': 'vote',
  'label': 'Christian Görke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492757',
  'mandate': {'id': 53495,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Görke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53495'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492756,
  'entity_type': 'vote',
  'label': 'Nicole Gohlke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492756',
  'mandate': {'id': 53656,
   'entity_type': 'candidacy_mandate',
   'label': 'Nicole Gohlke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53656'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492755,
  'entity_type': 'vote',
  'label': 'Susanne Ferschl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492755',
  'mandate': {'id': 53658,
   'entity_type': 'candidacy_mandate',
   'label': 'Susanne Ferschl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53658'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492754,
  'entity_type': 'vote',
  'label': 'Klaus Ernst - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492754',
  'mandate': {'id': 53657,
   'entity_type': 'candidacy_mandate',
   'label': 'Klaus Ernst (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53657'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492753,
  'entity_type': 'vote',
  'label': 'Anke Domscheit-Berg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492753',
  'mandate': {'id': 54104,
   'entity_type': 'candidacy_mandate',
   'label': 'Anke Domscheit-Berg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54104'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492752,
  'entity_type': 'vote',
  'label': 'Sevim Dağdelen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492752',
  'mandate': {'id': 53437,
   'entity_type': 'candidacy_mandate',
   'label': 'Sevim Dağdelen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53437'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492751,
  'entity_type': 'vote',
  'label': 'Clara Bünger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492751',
  'mandate': {'id': 54422,
   'entity_type': 'candidacy_mandate',
   'label': 'Clara Bünger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54422'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492750,
  'entity_type': 'vote',
  'label': 'Matthias W. Birkwald - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492750',
  'mandate': {'id': 54102,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias W. Birkwald (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54102'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492749,
  'entity_type': 'vote',
  'label': 'Dietmar Bartsch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492749',
  'mandate': {'id': 53986,
   'entity_type': 'candidacy_mandate',
   'label': 'Dietmar Bartsch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53986'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492748,
  'entity_type': 'vote',
  'label': 'Ali Al-Dailami - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492748',
  'mandate': {'id': 54115,
   'entity_type': 'candidacy_mandate',
   'label': 'Ali Al-Dailami (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54115'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492747,
  'entity_type': 'vote',
  'label': 'Gökay Akbulut - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492747',
  'mandate': {'id': 53722,
   'entity_type': 'candidacy_mandate',
   'label': 'Gökay Akbulut (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53722'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 324,
   'entity_type': 'fraction',
   'label': 'DIE LINKE. (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/324'}},
 {'id': 492746,
  'entity_type': 'vote',
  'label': 'Kay-Uwe Ziegler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492746',
  'mandate': {'id': 53776,
   'entity_type': 'candidacy_mandate',
   'label': 'Kay-Uwe Ziegler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53776'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492745,
  'entity_type': 'vote',
  'label': 'Joachim Wundrak - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492745',
  'mandate': {'id': 53462,
   'entity_type': 'candidacy_mandate',
   'label': 'Joachim Wundrak (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53462'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492744,
  'entity_type': 'vote',
  'label': 'Christian Wirth - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492744',
  'mandate': {'id': 54120,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Wirth (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54120'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492743,
  'entity_type': 'vote',
  'label': 'Wolfgang Wiehle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492743',
  'mandate': {'id': 53621,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Wiehle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53621'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492742,
  'entity_type': 'vote',
  'label': 'Harald Weyel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492742',
  'mandate': {'id': 53408,
   'entity_type': 'candidacy_mandate',
   'label': 'Harald Weyel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53408'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492741,
  'entity_type': 'vote',
  'label': 'Alice Weidel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492741',
  'mandate': {'id': 53712,
   'entity_type': 'candidacy_mandate',
   'label': 'Alice Weidel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53712'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492740,
  'entity_type': 'vote',
  'label': 'Beatrix von Storch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492740',
  'mandate': {'id': 53514,
   'entity_type': 'candidacy_mandate',
   'label': 'Beatrix von Storch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53514'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492739,
  'entity_type': 'vote',
  'label': 'Klaus Stöber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492739',
  'mandate': {'id': 53892,
   'entity_type': 'candidacy_mandate',
   'label': 'Klaus Stöber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53892'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492738,
  'entity_type': 'vote',
  'label': 'René Springer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492738',
  'mandate': {'id': 53492,
   'entity_type': 'candidacy_mandate',
   'label': 'René Springer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53492'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492737,
  'entity_type': 'vote',
  'label': 'Dirk Spaniel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492737',
  'mandate': {'id': 53714,
   'entity_type': 'candidacy_mandate',
   'label': 'Dirk Spaniel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53714'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492736,
  'entity_type': 'vote',
  'label': 'Martin Sichert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492736',
  'mandate': {'id': 53619,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Sichert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53619'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492735,
  'entity_type': 'vote',
  'label': 'Thomas Seitz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492735',
  'mandate': {'id': 53719,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Seitz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53719'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492734,
  'entity_type': 'vote',
  'label': 'Uwe Schulz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492734',
  'mandate': {'id': 53545,
   'entity_type': 'candidacy_mandate',
   'label': 'Uwe Schulz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53545'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492733,
  'entity_type': 'vote',
  'label': 'Jörg Schneider - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492733',
  'mandate': {'id': 54046,
   'entity_type': 'candidacy_mandate',
   'label': 'Jörg Schneider (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54046'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492732,
  'entity_type': 'vote',
  'label': 'Jan Wenzel Schmidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492732',
  'mandate': {'id': 53502,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Wenzel Schmidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53502'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492731,
  'entity_type': 'vote',
  'label': 'Eugen Schmidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492731',
  'mandate': {'id': 53409,
   'entity_type': 'candidacy_mandate',
   'label': 'Eugen Schmidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53409'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492730,
  'entity_type': 'vote',
  'label': 'Ulrike Schielke-Ziesing - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492730',
  'mandate': {'id': 53985,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulrike Schielke-Ziesing (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53985'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492729,
  'entity_type': 'vote',
  'label': 'Bernd Schattner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492729',
  'mandate': {'id': 53580,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Schattner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53580'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492728,
  'entity_type': 'vote',
  'label': 'Frank Rinck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492728',
  'mandate': {'id': 53463,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Rinck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53463'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492727,
  'entity_type': 'vote',
  'label': 'Martin Erwin Renner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492727',
  'mandate': {'id': 54045,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Erwin Renner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54045'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492726,
  'entity_type': 'vote',
  'label': 'Martin Reichardt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492726',
  'mandate': {'id': 53501,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Reichardt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53501'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492725,
  'entity_type': 'vote',
  'label': 'Stephan Protschka - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492725',
  'mandate': {'id': 53617,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Protschka (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53617'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492724,
  'entity_type': 'vote',
  'label': 'Jürgen Pohl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492724',
  'mandate': {'id': 54116,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Pohl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54116'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492723,
  'entity_type': 'vote',
  'label': 'Tobias Matthias Peterka - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492723',
  'mandate': {'id': 54118,
   'entity_type': 'candidacy_mandate',
   'label': 'Tobias Matthias Peterka (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54118'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492722,
  'entity_type': 'vote',
  'label': 'Gerold Otten - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492722',
  'mandate': {'id': 53623,
   'entity_type': 'candidacy_mandate',
   'label': 'Gerold Otten (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53623'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492721,
  'entity_type': 'vote',
  'label': 'Jan Ralf Nolte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492721',
  'mandate': {'id': 53546,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Ralf Nolte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53546'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492720,
  'entity_type': 'vote',
  'label': 'Edgar Naujok - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492720',
  'mandate': {'id': 53857,
   'entity_type': 'candidacy_mandate',
   'label': 'Edgar Naujok (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53857'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492719,
  'entity_type': 'vote',
  'label': 'Sebastian Münzenmaier - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492719',
  'mandate': {'id': 53577,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Münzenmaier (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53577'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492718,
  'entity_type': 'vote',
  'label': 'Matthias Moosdorf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492718',
  'mandate': {'id': 53868,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Moosdorf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53868'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492717,
  'entity_type': 'vote',
  'label': 'Mike Moncsek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492717',
  'mandate': {'id': 53866,
   'entity_type': 'candidacy_mandate',
   'label': 'Mike Moncsek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53866'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492716,
  'entity_type': 'vote',
  'label': 'Corinna Miazga - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492716',
  'mandate': {'id': 53616,
   'entity_type': 'candidacy_mandate',
   'label': 'Corinna Miazga (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53616'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492715,
  'entity_type': 'vote',
  'label': 'Rüdiger Lucassen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492715',
  'mandate': {'id': 54042,
   'entity_type': 'candidacy_mandate',
   'label': 'Rüdiger Lucassen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54042'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492714,
  'entity_type': 'vote',
  'label': 'Barbara Benkstein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492714',
  'mandate': {'id': 53858,
   'entity_type': 'candidacy_mandate',
   'label': 'Barbara Benkstein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53858'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492713,
  'entity_type': 'vote',
  'label': 'Rainer Kraft - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492713',
  'mandate': {'id': 53622,
   'entity_type': 'candidacy_mandate',
   'label': 'Rainer Kraft (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53622'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492712,
  'entity_type': 'vote',
  'label': 'Steffen Kotré - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492712',
  'mandate': {'id': 53493,
   'entity_type': 'candidacy_mandate',
   'label': 'Steffen Kotré (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53493'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492711,
  'entity_type': 'vote',
  'label': 'Jörn König - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492711',
  'mandate': {'id': 53466,
   'entity_type': 'candidacy_mandate',
   'label': 'Jörn König (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53466'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492710,
  'entity_type': 'vote',
  'label': 'Enrico Komning - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492710',
  'mandate': {'id': 53984,
   'entity_type': 'candidacy_mandate',
   'label': 'Enrico Komning (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53984'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492709,
  'entity_type': 'vote',
  'label': 'Norbert Kleinwächter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492709',
  'mandate': {'id': 53494,
   'entity_type': 'candidacy_mandate',
   'label': 'Norbert Kleinwächter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53494'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492708,
  'entity_type': 'vote',
  'label': 'Stefan Keuter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492708',
  'mandate': {'id': 53411,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Keuter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53411'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492707,
  'entity_type': 'vote',
  'label': 'Michael Kaufmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492707',
  'mandate': {'id': 53896,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Kaufmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53896'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492706,
  'entity_type': 'vote',
  'label': 'Malte Kaufmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492706',
  'mandate': {'id': 53717,
   'entity_type': 'candidacy_mandate',
   'label': 'Malte Kaufmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53717'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492705,
  'entity_type': 'vote',
  'label': 'Marc Jongen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492705',
  'mandate': {'id': 53715,
   'entity_type': 'candidacy_mandate',
   'label': 'Marc Jongen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53715'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492704,
  'entity_type': 'vote',
  'label': 'Steffen Janich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492704',
  'mandate': {'id': 53861,
   'entity_type': 'candidacy_mandate',
   'label': 'Steffen Janich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53861'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492703,
  'entity_type': 'vote',
  'label': 'Fabian Jacobi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492703',
  'mandate': {'id': 54044,
   'entity_type': 'candidacy_mandate',
   'label': 'Fabian Jacobi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54044'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492702,
  'entity_type': 'vote',
  'label': 'Gerrit Huy - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492702',
  'mandate': {'id': 53625,
   'entity_type': 'candidacy_mandate',
   'label': 'Gerrit Huy (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53625'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492701,
  'entity_type': 'vote',
  'label': 'Leif-Erik Holm - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492701',
  'mandate': {'id': 53983,
   'entity_type': 'candidacy_mandate',
   'label': 'Leif-Erik Holm (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53983'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492700,
  'entity_type': 'vote',
  'label': 'Nicole Höchst - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492700',
  'mandate': {'id': 53578,
   'entity_type': 'candidacy_mandate',
   'label': 'Nicole Höchst (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53578'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492699,
  'entity_type': 'vote',
  'label': 'Karsten Hilse - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492699',
  'mandate': {'id': 53859,
   'entity_type': 'candidacy_mandate',
   'label': 'Karsten Hilse (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53859'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492698,
  'entity_type': 'vote',
  'label': 'Martin Hess - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492698',
  'mandate': {'id': 53713,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Hess (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53713'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492697,
  'entity_type': 'vote',
  'label': 'Jochen Haug - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492697',
  'mandate': {'id': 53410,
   'entity_type': 'candidacy_mandate',
   'label': 'Jochen Haug (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53410'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492696,
  'entity_type': 'vote',
  'label': 'Mariana Harder-Kühnel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492696',
  'mandate': {'id': 53543,
   'entity_type': 'candidacy_mandate',
   'label': 'Mariana Harder-Kühnel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53543'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492695,
  'entity_type': 'vote',
  'label': 'Kay Gottschalk - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492695',
  'mandate': {'id': 54043,
   'entity_type': 'candidacy_mandate',
   'label': 'Kay Gottschalk (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54043'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492694,
  'entity_type': 'vote',
  'label': 'Hannes Gnauck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492694',
  'mandate': {'id': 54103,
   'entity_type': 'candidacy_mandate',
   'label': 'Hannes Gnauck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54103'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492693,
  'entity_type': 'vote',
  'label': 'Albrecht Glaser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492693',
  'mandate': {'id': 53547,
   'entity_type': 'candidacy_mandate',
   'label': 'Albrecht Glaser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53547'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492692,
  'entity_type': 'vote',
  'label': 'Alexander Gauland - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492692',
  'mandate': {'id': 53491,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Gauland (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53491'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492691,
  'entity_type': 'vote',
  'label': 'Götz Frömming - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492691',
  'mandate': {'id': 53516,
   'entity_type': 'candidacy_mandate',
   'label': 'Götz Frömming (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53516'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492690,
  'entity_type': 'vote',
  'label': 'Markus Frohnmaier - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492690',
  'mandate': {'id': 54124,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Frohnmaier (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54124'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492689,
  'entity_type': 'vote',
  'label': 'Dietmar Friedhoff - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492689',
  'mandate': {'id': 53465,
   'entity_type': 'candidacy_mandate',
   'label': 'Dietmar Friedhoff (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53465'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492688,
  'entity_type': 'vote',
  'label': 'Peter Felser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492688',
  'mandate': {'id': 53624,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Felser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53624'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492687,
  'entity_type': 'vote',
  'label': 'Michael Espendiller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492687',
  'mandate': {'id': 54047,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Espendiller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54047'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492686,
  'entity_type': 'vote',
  'label': 'Thomas Ehrhorn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492686',
  'mandate': {'id': 53464,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Ehrhorn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53464'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492685,
  'entity_type': 'vote',
  'label': 'Thomas Dietz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492685',
  'mandate': {'id': 53867,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Dietz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53867'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492684,
  'entity_type': 'vote',
  'label': 'Gottfried Curio - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492684',
  'mandate': {'id': 53515,
   'entity_type': 'candidacy_mandate',
   'label': 'Gottfried Curio (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53515'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492683,
  'entity_type': 'vote',
  'label': 'Tino Chrupalla - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492683',
  'mandate': {'id': 53860,
   'entity_type': 'candidacy_mandate',
   'label': 'Tino Chrupalla (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53860'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492682,
  'entity_type': 'vote',
  'label': 'Petr Bystron - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492682',
  'mandate': {'id': 53618,
   'entity_type': 'candidacy_mandate',
   'label': 'Petr Bystron (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53618'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492681,
  'entity_type': 'vote',
  'label': 'Marcus Bühl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492681',
  'mandate': {'id': 53894,
   'entity_type': 'candidacy_mandate',
   'label': 'Marcus Bühl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53894'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492680,
  'entity_type': 'vote',
  'label': 'Jürgen Braun - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492680',
  'mandate': {'id': 53720,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Braun (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53720'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492679,
  'entity_type': 'vote',
  'label': 'Stephan Brandner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492679',
  'mandate': {'id': 54061,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Brandner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54061'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492678,
  'entity_type': 'vote',
  'label': 'Dirk Brandes - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492678',
  'mandate': {'id': 53467,
   'entity_type': 'candidacy_mandate',
   'label': 'Dirk Brandes (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53467'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492677,
  'entity_type': 'vote',
  'label': 'Gereon Bollmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492677',
  'mandate': {'id': 54096,
   'entity_type': 'candidacy_mandate',
   'label': 'Gereon Bollmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54096'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492676,
  'entity_type': 'vote',
  'label': 'Peter Boehringer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492676',
  'mandate': {'id': 53615,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Boehringer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53615'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492675,
  'entity_type': 'vote',
  'label': 'René Bochmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492675',
  'mandate': {'id': 53854,
   'entity_type': 'candidacy_mandate',
   'label': 'René Bochmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53854'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492674,
  'entity_type': 'vote',
  'label': 'Andreas Bleck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492674',
  'mandate': {'id': 53579,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Bleck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53579'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492673,
  'entity_type': 'vote',
  'label': 'Marc Bernhard - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492673',
  'mandate': {'id': 53716,
   'entity_type': 'candidacy_mandate',
   'label': 'Marc Bernhard (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53716'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492672,
  'entity_type': 'vote',
  'label': 'Roger Beckamp - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492672',
  'mandate': {'id': 53407,
   'entity_type': 'candidacy_mandate',
   'label': 'Roger Beckamp (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53407'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492671,
  'entity_type': 'vote',
  'label': 'Bernd Baumann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492671',
  'mandate': {'id': 53994,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Baumann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53994'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492670,
  'entity_type': 'vote',
  'label': 'Christina Baum - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492670',
  'mandate': {'id': 53718,
   'entity_type': 'candidacy_mandate',
   'label': 'Christina Baum (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53718'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492669,
  'entity_type': 'vote',
  'label': 'Carolin Bachmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492669',
  'mandate': {'id': 53864,
   'entity_type': 'candidacy_mandate',
   'label': 'Carolin Bachmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53864'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 323,
   'entity_type': 'fraction',
   'label': 'AfD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/323'}},
 {'id': 492668,
  'entity_type': 'vote',
  'label': 'Volker Wissing - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492668',
  'mandate': {'id': 53581,
   'entity_type': 'candidacy_mandate',
   'label': 'Volker Wissing (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53581'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492667,
  'entity_type': 'vote',
  'label': 'Nicole Westig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492667',
  'mandate': {'id': 54032,
   'entity_type': 'candidacy_mandate',
   'label': 'Nicole Westig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54032'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492666,
  'entity_type': 'vote',
  'label': 'Sandra Weeser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492666',
  'mandate': {'id': 53584,
   'entity_type': 'candidacy_mandate',
   'label': 'Sandra Weeser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53584'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492665,
  'entity_type': 'vote',
  'label': 'Johannes Vogel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492665',
  'mandate': {'id': 54027,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Vogel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54027'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492664,
  'entity_type': 'vote',
  'label': 'Gerald Ullrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492664',
  'mandate': {'id': 53569,
   'entity_type': 'candidacy_mandate',
   'label': 'Gerald Ullrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53569'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492663,
  'entity_type': 'vote',
  'label': 'Andrew Ullmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492663',
  'mandate': {'id': 53635,
   'entity_type': 'candidacy_mandate',
   'label': 'Andrew Ullmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53635'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492662,
  'entity_type': 'vote',
  'label': 'Florian Toncar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492662',
  'mandate': {'id': 53702,
   'entity_type': 'candidacy_mandate',
   'label': 'Florian Toncar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53702'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492661,
  'entity_type': 'vote',
  'label': 'Manfred Todtenhausen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492661',
  'mandate': {'id': 54041,
   'entity_type': 'candidacy_mandate',
   'label': 'Manfred Todtenhausen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54041'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492660,
  'entity_type': 'vote',
  'label': 'Nico Tippelt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492660',
  'mandate': {'id': 53533,
   'entity_type': 'candidacy_mandate',
   'label': 'Nico Tippelt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53533'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492659,
  'entity_type': 'vote',
  'label': 'Stephan Thomae - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492659',
  'mandate': {'id': 53631,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Thomae (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53631'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492658,
  'entity_type': 'vote',
  'label': 'Michael Theurer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492658',
  'mandate': {'id': 53698,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Theurer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53698'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492657,
  'entity_type': 'vote',
  'label': 'Jens Teutrine - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492657',
  'mandate': {'id': 54040,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Teutrine (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54040'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492656,
  'entity_type': 'vote',
  'label': 'Linda Teuteberg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492656',
  'mandate': {'id': 53496,
   'entity_type': 'candidacy_mandate',
   'label': 'Linda Teuteberg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53496'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492655,
  'entity_type': 'vote',
  'label': 'Benjamin Strasser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492655',
  'mandate': {'id': 53703,
   'entity_type': 'candidacy_mandate',
   'label': 'Benjamin Strasser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53703'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492654,
  'entity_type': 'vote',
  'label': 'Marie-Agnes Strack-Zimmermann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492654',
  'mandate': {'id': 54024,
   'entity_type': 'candidacy_mandate',
   'label': 'Marie-Agnes Strack-Zimmermann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54024'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492653,
  'entity_type': 'vote',
  'label': 'Konrad Stockmeier - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492653',
  'mandate': {'id': 53710,
   'entity_type': 'candidacy_mandate',
   'label': 'Konrad Stockmeier (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53710'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492652,
  'entity_type': 'vote',
  'label': 'Bettina Stark-Watzinger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492652',
  'mandate': {'id': 53548,
   'entity_type': 'candidacy_mandate',
   'label': 'Bettina Stark-Watzinger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53548'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492651,
  'entity_type': 'vote',
  'label': 'Judith Skudelny - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492651',
  'mandate': {'id': 53699,
   'entity_type': 'candidacy_mandate',
   'label': 'Judith Skudelny (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53699'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492650,
  'entity_type': 'vote',
  'label': 'Rainer Semet - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492650',
  'mandate': {'id': 53711,
   'entity_type': 'candidacy_mandate',
   'label': 'Rainer Semet (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53711'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492649,
  'entity_type': 'vote',
  'label': 'Stephan Seiter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492649',
  'mandate': {'id': 53708,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Seiter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53708'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492648,
  'entity_type': 'vote',
  'label': 'Matthias Seestern-Pauly - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492648',
  'mandate': {'id': 53460,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Seestern-Pauly (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53460'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492647,
  'entity_type': 'vote',
  'label': 'Anja Schulz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492647',
  'mandate': {'id': 53456,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Schulz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53456'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492646,
  'entity_type': 'vote',
  'label': 'Ria Schröder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492646',
  'mandate': {'id': 53403,
   'entity_type': 'candidacy_mandate',
   'label': 'Ria Schröder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53403'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492645,
  'entity_type': 'vote',
  'label': 'Frank Schäffler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492645',
  'mandate': {'id': 54031,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Schäffler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54031'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492644,
  'entity_type': 'vote',
  'label': 'Christian Sauter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492644',
  'mandate': {'id': 54038,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Sauter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54038'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492643,
  'entity_type': 'vote',
  'label': 'Bernd Reuther - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492643',
  'mandate': {'id': 54035,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Reuther (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54035'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492642,
  'entity_type': 'vote',
  'label': 'Hagen Reinhold - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492642',
  'mandate': {'id': 53988,
   'entity_type': 'candidacy_mandate',
   'label': 'Hagen Reinhold (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53988'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492641,
  'entity_type': 'vote',
  'label': 'Volker Redder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492641',
  'mandate': {'id': 53486,
   'entity_type': 'candidacy_mandate',
   'label': 'Volker Redder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53486'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492640,
  'entity_type': 'vote',
  'label': 'Claudia Raffelhüschen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492640',
  'mandate': {'id': 54380,
   'entity_type': 'candidacy_mandate',
   'label': 'Claudia Raffelhüschen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54380'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492639,
  'entity_type': 'vote',
  'label': 'Frank Müller-Rosentritt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492639',
  'mandate': {'id': 53530,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Müller-Rosentritt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53530'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492638,
  'entity_type': 'vote',
  'label': 'Alexander Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492638',
  'mandate': {'id': 53551,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53551'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492637,
  'entity_type': 'vote',
  'label': 'Max Mordhorst - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492637',
  'mandate': {'id': 54089,
   'entity_type': 'candidacy_mandate',
   'label': 'Max Mordhorst (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54089'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492636,
  'entity_type': 'vote',
  'label': 'Christoph Meyer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492636',
  'mandate': {'id': 54109,
   'entity_type': 'candidacy_mandate',
   'label': 'Christoph Meyer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54109'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492635,
  'entity_type': 'vote',
  'label': 'Till Mansmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492635',
  'mandate': {'id': 53550,
   'entity_type': 'candidacy_mandate',
   'label': 'Till Mansmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53550'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492634,
  'entity_type': 'vote',
  'label': 'Kristine Lütke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492634',
  'mandate': {'id': 53637,
   'entity_type': 'candidacy_mandate',
   'label': 'Kristine Lütke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53637'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492633,
  'entity_type': 'vote',
  'label': 'Oliver Luksic - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492633',
  'mandate': {'id': 53663,
   'entity_type': 'candidacy_mandate',
   'label': 'Oliver Luksic (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53663'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492632,
  'entity_type': 'vote',
  'label': 'Michael Link - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492632',
  'mandate': {'id': 53700,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Link (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53700'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492631,
  'entity_type': 'vote',
  'label': 'Christian Lindner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492631',
  'mandate': {'id': 54023,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Lindner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54023'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492630,
  'entity_type': 'vote',
  'label': 'Lars Lindemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492630',
  'mandate': {'id': 54111,
   'entity_type': 'candidacy_mandate',
   'label': 'Lars Lindemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54111'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492629,
  'entity_type': 'vote',
  'label': 'Thorsten Lieb - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492629',
  'mandate': {'id': 53549,
   'entity_type': 'candidacy_mandate',
   'label': 'Thorsten Lieb (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53549'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492628,
  'entity_type': 'vote',
  'label': 'Jürgen Lenders - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492628',
  'mandate': {'id': 53552,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Lenders (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53552'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492627,
  'entity_type': 'vote',
  'label': 'Ulrich Lechte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492627',
  'mandate': {'id': 53633,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulrich Lechte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53633'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492626,
  'entity_type': 'vote',
  'label': 'Alexander Graf Lambsdorff - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492626',
  'mandate': {'id': 54025,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Graf Lambsdorff (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54025'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492625,
  'entity_type': 'vote',
  'label': 'Konstantin Kuhle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492625',
  'mandate': {'id': 53457,
   'entity_type': 'candidacy_mandate',
   'label': 'Konstantin Kuhle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53457'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492624,
  'entity_type': 'vote',
  'label': 'Wolfgang Kubicki - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492624',
  'mandate': {'id': 54086,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Kubicki (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54086'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492623,
  'entity_type': 'vote',
  'label': 'Michael Kruse - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492623',
  'mandate': {'id': 53402,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Kruse (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53402'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492622,
  'entity_type': 'vote',
  'label': 'Carina Konrad - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492622',
  'mandate': {'id': 53582,
   'entity_type': 'candidacy_mandate',
   'label': 'Carina Konrad (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53582'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492621,
  'entity_type': 'vote',
  'label': 'Lukas Köhler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492621',
  'mandate': {'id': 53629,
   'entity_type': 'candidacy_mandate',
   'label': 'Lukas Köhler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53629'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492620,
  'entity_type': 'vote',
  'label': 'Pascal Kober - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492620',
  'mandate': {'id': 53701,
   'entity_type': 'candidacy_mandate',
   'label': 'Pascal Kober (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53701'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492619,
  'entity_type': 'vote',
  'label': 'Daniela Kluckert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492619',
  'mandate': {'id': 54110,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniela Kluckert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54110'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492618,
  'entity_type': 'vote',
  'label': 'Karsten Klein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492618',
  'mandate': {'id': 53628,
   'entity_type': 'candidacy_mandate',
   'label': 'Karsten Klein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53628'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492617,
  'entity_type': 'vote',
  'label': 'Ann-Veruschka Jurisch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492617',
  'mandate': {'id': 54122,
   'entity_type': 'candidacy_mandate',
   'label': 'Ann-Veruschka Jurisch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54122'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492616,
  'entity_type': 'vote',
  'label': 'Gyde Jensen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492616',
  'mandate': {'id': 54087,
   'entity_type': 'candidacy_mandate',
   'label': 'Gyde Jensen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54087'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492615,
  'entity_type': 'vote',
  'label': 'Olaf in der Beek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492615',
  'mandate': {'id': 54039,
   'entity_type': 'candidacy_mandate',
   'label': 'Olaf in der Beek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54039'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492614,
  'entity_type': 'vote',
  'label': 'Reinhard Houben - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492614',
  'mandate': {'id': 54030,
   'entity_type': 'candidacy_mandate',
   'label': 'Reinhard Houben (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54030'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492613,
  'entity_type': 'vote',
  'label': 'Christoph Hoffmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492613',
  'mandate': {'id': 53706,
   'entity_type': 'candidacy_mandate',
   'label': 'Christoph Hoffmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53706'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492612,
  'entity_type': 'vote',
  'label': 'Manuel Höferlin - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492612',
  'mandate': {'id': 53585,
   'entity_type': 'candidacy_mandate',
   'label': 'Manuel Höferlin (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53585'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492611,
  'entity_type': 'vote',
  'label': 'Gero Hocker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492611',
  'mandate': {'id': 53459,
   'entity_type': 'candidacy_mandate',
   'label': 'Gero Hocker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53459'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492610,
  'entity_type': 'vote',
  'label': 'Katja Hessel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492610',
  'mandate': {'id': 53627,
   'entity_type': 'candidacy_mandate',
   'label': 'Katja Hessel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53627'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492609,
  'entity_type': 'vote',
  'label': 'Torsten Herbst - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492609',
  'mandate': {'id': 53529,
   'entity_type': 'candidacy_mandate',
   'label': 'Torsten Herbst (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53529'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492608,
  'entity_type': 'vote',
  'label': 'Markus Herbrand - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492608',
  'mandate': {'id': 54034,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Herbrand (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54034'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492607,
  'entity_type': 'vote',
  'label': 'Katrin Helling-Plahr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492607',
  'mandate': {'id': 54037,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Helling-Plahr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54037'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492606,
  'entity_type': 'vote',
  'label': 'Peter Heidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492606',
  'mandate': {'id': 53554,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Heidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53554'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492605,
  'entity_type': 'vote',
  'label': 'Ulrike Harzer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492605',
  'mandate': {'id': 53532,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulrike Harzer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53532'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492604,
  'entity_type': 'vote',
  'label': 'Philipp Hartewig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492604',
  'mandate': {'id': 53531,
   'entity_type': 'candidacy_mandate',
   'label': 'Philipp Hartewig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53531'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492603,
  'entity_type': 'vote',
  'label': 'Reginald Hanke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492603',
  'mandate': {'id': 53570,
   'entity_type': 'candidacy_mandate',
   'label': 'Reginald Hanke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53570'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492602,
  'entity_type': 'vote',
  'label': 'Thomas Hacker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492602',
  'mandate': {'id': 53638,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Hacker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53638'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492601,
  'entity_type': 'vote',
  'label': 'Nils Gründer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492601',
  'mandate': {'id': 56410,
   'entity_type': 'candidacy_mandate',
   'label': 'Nils Gründer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/56410'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492600,
  'entity_type': 'vote',
  'label': 'Anikó Glogowski-Merten - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492600',
  'mandate': {'id': 53461,
   'entity_type': 'candidacy_mandate',
   'label': 'Anikó Glogowski-Merten (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53461'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492599,
  'entity_type': 'vote',
  'label': 'Knut Gerschau - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492599',
  'mandate': {'id': 53458,
   'entity_type': 'candidacy_mandate',
   'label': 'Knut Gerschau (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53458'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492598,
  'entity_type': 'vote',
  'label': 'Martin Gassner-Herz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492598',
  'mandate': {'id': 54123,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Gassner-Herz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54123'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492597,
  'entity_type': 'vote',
  'label': 'Maximilian Funke-Kaiser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492597',
  'mandate': {'id': 53636,
   'entity_type': 'candidacy_mandate',
   'label': 'Maximilian Funke-Kaiser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53636'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492596,
  'entity_type': 'vote',
  'label': 'Otto Fricke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492596',
  'mandate': {'id': 54029,
   'entity_type': 'candidacy_mandate',
   'label': 'Otto Fricke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54029'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492595,
  'entity_type': 'vote',
  'label': 'Daniel Föst - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492595',
  'mandate': {'id': 53626,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniel Föst (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53626'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492594,
  'entity_type': 'vote',
  'label': 'Marcus Faber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492594',
  'mandate': {'id': 53506,
   'entity_type': 'candidacy_mandate',
   'label': 'Marcus Faber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53506'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492593,
  'entity_type': 'vote',
  'label': 'Christian Dürr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492593',
  'mandate': {'id': 53454,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Dürr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53454'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492592,
  'entity_type': 'vote',
  'label': 'Bijan Djir-Sarai - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492592',
  'mandate': {'id': 54028,
   'entity_type': 'candidacy_mandate',
   'label': 'Bijan Djir-Sarai (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54028'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492591,
  'entity_type': 'vote',
  'label': 'Carl-Julius Cronenberg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492591',
  'mandate': {'id': 54036,
   'entity_type': 'candidacy_mandate',
   'label': 'Carl-Julius Cronenberg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54036'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492590,
  'entity_type': 'vote',
  'label': 'Karlheinz Busen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492590',
  'mandate': {'id': 54033,
   'entity_type': 'candidacy_mandate',
   'label': 'Karlheinz Busen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54033'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492589,
  'entity_type': 'vote',
  'label': 'Marco Buschmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492589',
  'mandate': {'id': 54026,
   'entity_type': 'candidacy_mandate',
   'label': 'Marco Buschmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54026'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492588,
  'entity_type': 'vote',
  'label': 'Sandra Bubendorfer-Licht - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492588',
  'mandate': {'id': 53634,
   'entity_type': 'candidacy_mandate',
   'label': 'Sandra Bubendorfer-Licht (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53634'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492587,
  'entity_type': 'vote',
  'label': 'Mario Brandenburg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492587',
  'mandate': {'id': 53583,
   'entity_type': 'candidacy_mandate',
   'label': 'Mario Brandenburg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53583'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492586,
  'entity_type': 'vote',
  'label': 'Jens Brandenburg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492586',
  'mandate': {'id': 53705,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Brandenburg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53705'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492585,
  'entity_type': 'vote',
  'label': 'Friedhelm Boginski - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492585',
  'mandate': {'id': 53497,
   'entity_type': 'candidacy_mandate',
   'label': 'Friedhelm Boginski (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53497'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492584,
  'entity_type': 'vote',
  'label': 'Ingo Bodtke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492584',
  'mandate': {'id': 53507,
   'entity_type': 'candidacy_mandate',
   'label': 'Ingo Bodtke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53507'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492583,
  'entity_type': 'vote',
  'label': 'Jens Beeck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492583',
  'mandate': {'id': 53455,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Beeck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53455'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492582,
  'entity_type': 'vote',
  'label': 'Nicole Bauer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492582',
  'mandate': {'id': 53632,
   'entity_type': 'candidacy_mandate',
   'label': 'Nicole Bauer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53632'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': 'maternity_protection',
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492581,
  'entity_type': 'vote',
  'label': 'Christine Aschenberg-Dugnus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492581',
  'mandate': {'id': 54088,
   'entity_type': 'candidacy_mandate',
   'label': 'Christine Aschenberg-Dugnus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54088'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492580,
  'entity_type': 'vote',
  'label': 'Renata Alt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492580',
  'mandate': {'id': 53704,
   'entity_type': 'candidacy_mandate',
   'label': 'Renata Alt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53704'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492579,
  'entity_type': 'vote',
  'label': 'Muhanad Al-Halak - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492579',
  'mandate': {'id': 53639,
   'entity_type': 'candidacy_mandate',
   'label': 'Muhanad Al-Halak (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53639'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492578,
  'entity_type': 'vote',
  'label': 'Katja Adler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492578',
  'mandate': {'id': 53553,
   'entity_type': 'candidacy_mandate',
   'label': 'Katja Adler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53553'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492577,
  'entity_type': 'vote',
  'label': 'Valentin Abel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492577',
  'mandate': {'id': 53709,
   'entity_type': 'candidacy_mandate',
   'label': 'Valentin Abel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53709'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 322,
   'entity_type': 'fraction',
   'label': 'FDP (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/322'}},
 {'id': 492576,
  'entity_type': 'vote',
  'label': 'Tina Winklmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492576',
  'mandate': {'id': 53654,
   'entity_type': 'candidacy_mandate',
   'label': 'Tina Winklmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53654'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492575,
  'entity_type': 'vote',
  'label': 'Stefan Wenzel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492575',
  'mandate': {'id': 53477,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Wenzel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53477'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492574,
  'entity_type': 'vote',
  'label': 'Saskia Weishaupt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492574',
  'mandate': {'id': 53648,
   'entity_type': 'candidacy_mandate',
   'label': 'Saskia Weishaupt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53648'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492573,
  'entity_type': 'vote',
  'label': 'Beate Walter-Rosenheimer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492573',
  'mandate': {'id': 54377,
   'entity_type': 'candidacy_mandate',
   'label': 'Beate Walter-Rosenheimer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54377'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492572,
  'entity_type': 'vote',
  'label': 'Johannes Wagner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492572',
  'mandate': {'id': 53653,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Wagner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53653'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492571,
  'entity_type': 'vote',
  'label': 'Robin Wagener - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492571',
  'mandate': {'id': 53418,
   'entity_type': 'candidacy_mandate',
   'label': 'Robin Wagener (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53418'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492570,
  'entity_type': 'vote',
  'label': 'Niklas Wagener - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492570',
  'mandate': {'id': 53651,
   'entity_type': 'candidacy_mandate',
   'label': 'Niklas Wagener (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53651'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492569,
  'entity_type': 'vote',
  'label': 'Julia Verlinden - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492569',
  'mandate': {'id': 53472,
   'entity_type': 'candidacy_mandate',
   'label': 'Julia Verlinden (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53472'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492568,
  'entity_type': 'vote',
  'label': 'Katrin Uhlig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492568',
  'mandate': {'id': 53801,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Uhlig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53801'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492567,
  'entity_type': 'vote',
  'label': 'Jürgen Trittin - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492567',
  'mandate': {'id': 53471,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Trittin (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53471'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492566,
  'entity_type': 'vote',
  'label': 'Awet Tesfaiesus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492566',
  'mandate': {'id': 53561,
   'entity_type': 'candidacy_mandate',
   'label': 'Awet Tesfaiesus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53561'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492565,
  'entity_type': 'vote',
  'label': 'Kassem Taher Saleh - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492565',
  'mandate': {'id': 54135,
   'entity_type': 'candidacy_mandate',
   'label': 'Kassem Taher Saleh (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54135'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492564,
  'entity_type': 'vote',
  'label': 'Wolfgang Strengmann-Kuhn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492564',
  'mandate': {'id': 53557,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Strengmann-Kuhn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53557'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492563,
  'entity_type': 'vote',
  'label': 'Hanna Steinmüller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492563',
  'mandate': {'id': 53780,
   'entity_type': 'candidacy_mandate',
   'label': 'Hanna Steinmüller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53780'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492562,
  'entity_type': 'vote',
  'label': 'Till Steffen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492562',
  'mandate': {'id': 54057,
   'entity_type': 'candidacy_mandate',
   'label': 'Till Steffen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54057'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492561,
  'entity_type': 'vote',
  'label': 'Nina Stahr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492561',
  'mandate': {'id': 53513,
   'entity_type': 'candidacy_mandate',
   'label': 'Nina Stahr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53513'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492560,
  'entity_type': 'vote',
  'label': 'Merle Spellerberg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492560',
  'mandate': {'id': 53536,
   'entity_type': 'candidacy_mandate',
   'label': 'Merle Spellerberg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53536'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492559,
  'entity_type': 'vote',
  'label': 'Anne-Monika Spallek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492559',
  'mandate': {'id': 53428,
   'entity_type': 'candidacy_mandate',
   'label': 'Anne-Monika Spallek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53428'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492558,
  'entity_type': 'vote',
  'label': 'Nyke Slawik - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492558',
  'mandate': {'id': 53419,
   'entity_type': 'candidacy_mandate',
   'label': 'Nyke Slawik (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53419'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492557,
  'entity_type': 'vote',
  'label': 'Melis Sekmen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492557',
  'mandate': {'id': 53695,
   'entity_type': 'candidacy_mandate',
   'label': 'Melis Sekmen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53695'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492556,
  'entity_type': 'vote',
  'label': 'Kordula Schulz-Asche - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492556',
  'mandate': {'id': 53556,
   'entity_type': 'candidacy_mandate',
   'label': 'Kordula Schulz-Asche (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53556'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492555,
  'entity_type': 'vote',
  'label': 'Christina-Johanne Schröder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492555',
  'mandate': {'id': 53470,
   'entity_type': 'candidacy_mandate',
   'label': 'Christina-Johanne Schröder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53470'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492554,
  'entity_type': 'vote',
  'label': 'Marlene Schönberger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492554',
  'mandate': {'id': 53652,
   'entity_type': 'candidacy_mandate',
   'label': 'Marlene Schönberger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53652'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492553,
  'entity_type': 'vote',
  'label': 'Stefan Schmidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492553',
  'mandate': {'id': 53647,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Schmidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53647'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492552,
  'entity_type': 'vote',
  'label': 'Ulle Schauws - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492552',
  'mandate': {'id': 53417,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulle Schauws (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53417'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492551,
  'entity_type': 'vote',
  'label': 'Sebastian Schäfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492551',
  'mandate': {'id': 53696,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Schäfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53696'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492550,
  'entity_type': 'vote',
  'label': 'Jamila Anna Schäfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492550',
  'mandate': {'id': 54064,
   'entity_type': 'candidacy_mandate',
   'label': 'Jamila Anna Schäfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54064'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492549,
  'entity_type': 'vote',
  'label': 'Michael Sacher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492549',
  'mandate': {'id': 56408,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Sacher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/56408'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492548,
  'entity_type': 'vote',
  'label': 'Corinna Rüffer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492548',
  'mandate': {'id': 53588,
   'entity_type': 'candidacy_mandate',
   'label': 'Corinna Rüffer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53588'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492547,
  'entity_type': 'vote',
  'label': 'Manuela Rottmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492547',
  'mandate': {'id': 53643,
   'entity_type': 'candidacy_mandate',
   'label': 'Manuela Rottmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53643'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492546,
  'entity_type': 'vote',
  'label': 'Claudia Roth - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492546',
  'mandate': {'id': 53640,
   'entity_type': 'candidacy_mandate',
   'label': 'Claudia Roth (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53640'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492545,
  'entity_type': 'vote',
  'label': 'Tabea Rößner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492545',
  'mandate': {'id': 53586,
   'entity_type': 'candidacy_mandate',
   'label': 'Tabea Rößner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53586'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492544,
  'entity_type': 'vote',
  'label': 'Anja Reinalter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492544',
  'mandate': {'id': 53697,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Reinalter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53697'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492543,
  'entity_type': 'vote',
  'label': 'Filiz Polat - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492543',
  'mandate': {'id': 53468,
   'entity_type': 'candidacy_mandate',
   'label': 'Filiz Polat (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53468'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492542,
  'entity_type': 'vote',
  'label': 'Paula Piechotta - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492542',
  'mandate': {'id': 53534,
   'entity_type': 'candidacy_mandate',
   'label': 'Paula Piechotta (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53534'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492541,
  'entity_type': 'vote',
  'label': 'Lisa Paus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492541',
  'mandate': {'id': 54134,
   'entity_type': 'candidacy_mandate',
   'label': 'Lisa Paus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54134'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492540,
  'entity_type': 'vote',
  'label': 'Julian Pahlke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492540',
  'mandate': {'id': 53479,
   'entity_type': 'candidacy_mandate',
   'label': 'Julian Pahlke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53479'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492539,
  'entity_type': 'vote',
  'label': 'Cem Özdemir - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492539',
  'mandate': {'id': 53944,
   'entity_type': 'candidacy_mandate',
   'label': 'Cem Özdemir (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53944'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492538,
  'entity_type': 'vote',
  'label': 'Karoline Otte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492538',
  'mandate': {'id': 53476,
   'entity_type': 'candidacy_mandate',
   'label': 'Karoline Otte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53476'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492537,
  'entity_type': 'vote',
  'label': 'Omid Nouripour - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492537',
  'mandate': {'id': 54060,
   'entity_type': 'candidacy_mandate',
   'label': 'Omid Nouripour (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54060'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492536,
  'entity_type': 'vote',
  'label': 'Konstantin von Notz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492536',
  'mandate': {'id': 54092,
   'entity_type': 'candidacy_mandate',
   'label': 'Konstantin von Notz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54092'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492535,
  'entity_type': 'vote',
  'label': 'Ophelia Nick - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492535',
  'mandate': {'id': 53421,
   'entity_type': 'candidacy_mandate',
   'label': 'Ophelia Nick (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53421'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492534,
  'entity_type': 'vote',
  'label': 'Ingrid Nestle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492534',
  'mandate': {'id': 54091,
   'entity_type': 'candidacy_mandate',
   'label': 'Ingrid Nestle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54091'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492533,
  'entity_type': 'vote',
  'label': 'Sara Nanni - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492533',
  'mandate': {'id': 53424,
   'entity_type': 'candidacy_mandate',
   'label': 'Sara Nanni (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53424'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492532,
  'entity_type': 'vote',
  'label': 'Beate Müller-Gemmeke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492532',
  'mandate': {'id': 53688,
   'entity_type': 'candidacy_mandate',
   'label': 'Beate Müller-Gemmeke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53688'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492531,
  'entity_type': 'vote',
  'label': 'Sascha Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492531',
  'mandate': {'id': 54138,
   'entity_type': 'candidacy_mandate',
   'label': 'Sascha Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54138'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492530,
  'entity_type': 'vote',
  'label': 'Claudia Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492530',
  'mandate': {'id': 53989,
   'entity_type': 'candidacy_mandate',
   'label': 'Claudia Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53989'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492529,
  'entity_type': 'vote',
  'label': 'Boris Mijatović - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492529',
  'mandate': {'id': 54113,
   'entity_type': 'candidacy_mandate',
   'label': 'Boris Mijatović (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54113'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492528,
  'entity_type': 'vote',
  'label': 'Irene Mihalic - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492528',
  'mandate': {'id': 53413,
   'entity_type': 'candidacy_mandate',
   'label': 'Irene Mihalic (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53413'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492527,
  'entity_type': 'vote',
  'label': 'Swantje Michaelsen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492527',
  'mandate': {'id': 53478,
   'entity_type': 'candidacy_mandate',
   'label': 'Swantje Michaelsen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53478'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492526,
  'entity_type': 'vote',
  'label': 'Susanne Menge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492526',
  'mandate': {'id': 53480,
   'entity_type': 'candidacy_mandate',
   'label': 'Susanne Menge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53480'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492525,
  'entity_type': 'vote',
  'label': 'Zoe Mayer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492525',
  'mandate': {'id': 53951,
   'entity_type': 'candidacy_mandate',
   'label': 'Zoe Mayer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53951'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492524,
  'entity_type': 'vote',
  'label': 'Anna Lührmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492524',
  'mandate': {'id': 53558,
   'entity_type': 'candidacy_mandate',
   'label': 'Anna Lührmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53558'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492523,
  'entity_type': 'vote',
  'label': 'Max Lucks - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492523',
  'mandate': {'id': 53422,
   'entity_type': 'candidacy_mandate',
   'label': 'Max Lucks (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53422'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492522,
  'entity_type': 'vote',
  'label': 'Denise Loop - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492522',
  'mandate': {'id': 54093,
   'entity_type': 'candidacy_mandate',
   'label': 'Denise Loop (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54093'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492521,
  'entity_type': 'vote',
  'label': 'Tobias Lindner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492521',
  'mandate': {'id': 53587,
   'entity_type': 'candidacy_mandate',
   'label': 'Tobias Lindner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53587'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492520,
  'entity_type': 'vote',
  'label': 'Helge Limburg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492520',
  'mandate': {'id': 53475,
   'entity_type': 'candidacy_mandate',
   'label': 'Helge Limburg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53475'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492519,
  'entity_type': 'vote',
  'label': 'Anja Liebert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492519',
  'mandate': {'id': 53434,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Liebert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53434'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492518,
  'entity_type': 'vote',
  'label': 'Steffi Lemke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492518',
  'mandate': {'id': 53508,
   'entity_type': 'candidacy_mandate',
   'label': 'Steffi Lemke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53508'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492517,
  'entity_type': 'vote',
  'label': 'Sven Lehmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492517',
  'mandate': {'id': 53799,
   'entity_type': 'candidacy_mandate',
   'label': 'Sven Lehmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53799'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492516,
  'entity_type': 'vote',
  'label': 'Ricarda Lang - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492516',
  'mandate': {'id': 53692,
   'entity_type': 'candidacy_mandate',
   'label': 'Ricarda Lang (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53692'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492515,
  'entity_type': 'vote',
  'label': 'Markus Kurth - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492515',
  'mandate': {'id': 53429,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Kurth (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53429'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492514,
  'entity_type': 'vote',
  'label': 'Renate Künast - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492514',
  'mandate': {'id': 54108,
   'entity_type': 'candidacy_mandate',
   'label': 'Renate Künast (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54108'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492513,
  'entity_type': 'vote',
  'label': 'Christian Kühn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492513',
  'mandate': {'id': 53686,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Kühn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53686'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492512,
  'entity_type': 'vote',
  'label': 'Philip Krämer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492512',
  'mandate': {'id': 53559,
   'entity_type': 'candidacy_mandate',
   'label': 'Philip Krämer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53559'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492511,
  'entity_type': 'vote',
  'label': 'Laura Kraft - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492511',
  'mandate': {'id': 53430,
   'entity_type': 'candidacy_mandate',
   'label': 'Laura Kraft (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53430'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492510,
  'entity_type': 'vote',
  'label': 'Chantal Kopf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492510',
  'mandate': {'id': 53961,
   'entity_type': 'candidacy_mandate',
   'label': 'Chantal Kopf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53961'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492509,
  'entity_type': 'vote',
  'label': 'Maria Klein-Schmeink - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492509',
  'mandate': {'id': 53834,
   'entity_type': 'candidacy_mandate',
   'label': 'Maria Klein-Schmeink (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53834'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492508,
  'entity_type': 'vote',
  'label': 'Sven-Christian Kindler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492508',
  'mandate': {'id': 53469,
   'entity_type': 'candidacy_mandate',
   'label': 'Sven-Christian Kindler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53469'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492507,
  'entity_type': 'vote',
  'label': 'Misbah Khan - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492507',
  'mandate': {'id': 53590,
   'entity_type': 'candidacy_mandate',
   'label': 'Misbah Khan (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53590'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492506,
  'entity_type': 'vote',
  'label': 'Katja Keul - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492506',
  'mandate': {'id': 53474,
   'entity_type': 'candidacy_mandate',
   'label': 'Katja Keul (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53474'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492505,
  'entity_type': 'vote',
  'label': 'Michael Kellner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492505',
  'mandate': {'id': 53499,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Kellner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53499'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492504,
  'entity_type': 'vote',
  'label': 'Kirsten Kappert-Gonther - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492504',
  'mandate': {'id': 53485,
   'entity_type': 'candidacy_mandate',
   'label': 'Kirsten Kappert-Gonther (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53485'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492503,
  'entity_type': 'vote',
  'label': 'Lamya Kaddor - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492503',
  'mandate': {'id': 53420,
   'entity_type': 'candidacy_mandate',
   'label': 'Lamya Kaddor (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53420'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492502,
  'entity_type': 'vote',
  'label': 'Dieter Janecek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492502',
  'mandate': {'id': 54119,
   'entity_type': 'candidacy_mandate',
   'label': 'Dieter Janecek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54119'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492501,
  'entity_type': 'vote',
  'label': 'Bruno Hönel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492501',
  'mandate': {'id': 54094,
   'entity_type': 'candidacy_mandate',
   'label': 'Bruno Hönel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54094'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492500,
  'entity_type': 'vote',
  'label': 'Anton Hofreiter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492500',
  'mandate': {'id': 53641,
   'entity_type': 'candidacy_mandate',
   'label': 'Anton Hofreiter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53641'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492499,
  'entity_type': 'vote',
  'label': 'Bettina Hoffmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492499',
  'mandate': {'id': 53555,
   'entity_type': 'candidacy_mandate',
   'label': 'Bettina Hoffmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53555'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492498,
  'entity_type': 'vote',
  'label': 'Bernhard Herrmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492498',
  'mandate': {'id': 53535,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernhard Herrmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53535'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492497,
  'entity_type': 'vote',
  'label': 'Kathrin Henneberger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492497',
  'mandate': {'id': 53427,
   'entity_type': 'candidacy_mandate',
   'label': 'Kathrin Henneberger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53427'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492496,
  'entity_type': 'vote',
  'label': 'Linda Heitmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492496',
  'mandate': {'id': 53728,
   'entity_type': 'candidacy_mandate',
   'label': 'Linda Heitmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53728'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492495,
  'entity_type': 'vote',
  'label': 'Britta Haßelmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492495',
  'mandate': {'id': 53412,
   'entity_type': 'candidacy_mandate',
   'label': 'Britta Haßelmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53412'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492494,
  'entity_type': 'vote',
  'label': 'Robert Habeck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492494',
  'mandate': {'id': 54125,
   'entity_type': 'candidacy_mandate',
   'label': 'Robert Habeck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54125'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492493,
  'entity_type': 'vote',
  'label': 'Sabine Grützmacher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492493',
  'mandate': {'id': 53432,
   'entity_type': 'candidacy_mandate',
   'label': 'Sabine Grützmacher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53432'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492492,
  'entity_type': 'vote',
  'label': 'Erhard Grundl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492492',
  'mandate': {'id': 53645,
   'entity_type': 'candidacy_mandate',
   'label': 'Erhard Grundl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53645'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492491,
  'entity_type': 'vote',
  'label': 'Armin Grau - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492491',
  'mandate': {'id': 53589,
   'entity_type': 'candidacy_mandate',
   'label': 'Armin Grau (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53589'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492490,
  'entity_type': 'vote',
  'label': 'Katrin Göring-Eckardt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492490',
  'mandate': {'id': 54117,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Göring-Eckardt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54117'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492489,
  'entity_type': 'vote',
  'label': 'Jan-Niclas Gesenhues - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492489',
  'mandate': {'id': 53416,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan-Niclas Gesenhues (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53416'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492488,
  'entity_type': 'vote',
  'label': 'Stefan Gelbhaar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492488',
  'mandate': {'id': 53781,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Gelbhaar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53781'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492487,
  'entity_type': 'vote',
  'label': 'Kai Gehring - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492487',
  'mandate': {'id': 53423,
   'entity_type': 'candidacy_mandate',
   'label': 'Kai Gehring (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53423'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492486,
  'entity_type': 'vote',
  'label': 'Matthias Gastel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492486',
  'mandate': {'id': 53691,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Gastel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53691'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492485,
  'entity_type': 'vote',
  'label': 'Tessa Ganserer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492485',
  'mandate': {'id': 53650,
   'entity_type': 'candidacy_mandate',
   'label': 'Tessa Ganserer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53650'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492484,
  'entity_type': 'vote',
  'label': 'Schahina Gambir - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492484',
  'mandate': {'id': 53426,
   'entity_type': 'candidacy_mandate',
   'label': 'Schahina Gambir (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53426'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492483,
  'entity_type': 'vote',
  'label': 'Emilia Fester - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492483',
  'mandate': {'id': 54101,
   'entity_type': 'candidacy_mandate',
   'label': 'Emilia Fester (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54101'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492482,
  'entity_type': 'vote',
  'label': 'Marcel Emmerich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492482',
  'mandate': {'id': 53693,
   'entity_type': 'candidacy_mandate',
   'label': 'Marcel Emmerich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53693'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492481,
  'entity_type': 'vote',
  'label': 'Leon Eckert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492481',
  'mandate': {'id': 53655,
   'entity_type': 'candidacy_mandate',
   'label': 'Leon Eckert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53655'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492480,
  'entity_type': 'vote',
  'label': 'Harald Ebner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492480',
  'mandate': {'id': 53689,
   'entity_type': 'candidacy_mandate',
   'label': 'Harald Ebner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53689'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492479,
  'entity_type': 'vote',
  'label': 'Deborah Düring - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492479',
  'mandate': {'id': 53560,
   'entity_type': 'candidacy_mandate',
   'label': 'Deborah Düring (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53560'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492478,
  'entity_type': 'vote',
  'label': 'Katharina Dröge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492478',
  'mandate': {'id': 53414,
   'entity_type': 'candidacy_mandate',
   'label': 'Katharina Dröge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53414'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492477,
  'entity_type': 'vote',
  'label': 'Sandra Detzer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492477',
  'mandate': {'id': 53687,
   'entity_type': 'candidacy_mandate',
   'label': 'Sandra Detzer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53687'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492476,
  'entity_type': 'vote',
  'label': 'Ekin Deligöz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492476',
  'mandate': {'id': 53642,
   'entity_type': 'candidacy_mandate',
   'label': 'Ekin Deligöz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53642'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492475,
  'entity_type': 'vote',
  'label': 'Janosch Dahmen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492475',
  'mandate': {'id': 53431,
   'entity_type': 'candidacy_mandate',
   'label': 'Janosch Dahmen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53431'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492474,
  'entity_type': 'vote',
  'label': 'Anna Christmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492474',
  'mandate': {'id': 53690,
   'entity_type': 'candidacy_mandate',
   'label': 'Anna Christmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53690'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492473,
  'entity_type': 'vote',
  'label': 'Frank Bsirske - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492473',
  'mandate': {'id': 53473,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Bsirske (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53473'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492472,
  'entity_type': 'vote',
  'label': 'Agnieszka Brugger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492472',
  'mandate': {'id': 53685,
   'entity_type': 'candidacy_mandate',
   'label': 'Agnieszka Brugger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53685'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492471,
  'entity_type': 'vote',
  'label': 'Franziska Brantner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492471',
  'mandate': {'id': 53954,
   'entity_type': 'candidacy_mandate',
   'label': 'Franziska Brantner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53954'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492470,
  'entity_type': 'vote',
  'label': 'Lukas Benner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492470',
  'mandate': {'id': 53433,
   'entity_type': 'candidacy_mandate',
   'label': 'Lukas Benner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53433'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492469,
  'entity_type': 'vote',
  'label': 'Katharina Beck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492469',
  'mandate': {'id': 54100,
   'entity_type': 'candidacy_mandate',
   'label': 'Katharina Beck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54100'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492468,
  'entity_type': 'vote',
  'label': 'Canan Bayram - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492468',
  'mandate': {'id': 53788,
   'entity_type': 'candidacy_mandate',
   'label': 'Canan Bayram (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53788'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492467,
  'entity_type': 'vote',
  'label': 'Karl Bär - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492467',
  'mandate': {'id': 53649,
   'entity_type': 'candidacy_mandate',
   'label': 'Karl Bär (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53649'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492466,
  'entity_type': 'vote',
  'label': 'Felix Banaszak - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492466',
  'mandate': {'id': 53415,
   'entity_type': 'candidacy_mandate',
   'label': 'Felix Banaszak (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53415'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492465,
  'entity_type': 'vote',
  'label': 'Annalena Baerbock - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492465',
  'mandate': {'id': 53498,
   'entity_type': 'candidacy_mandate',
   'label': 'Annalena Baerbock (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53498'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492464,
  'entity_type': 'vote',
  'label': 'Lisa Badum - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492464',
  'mandate': {'id': 53646,
   'entity_type': 'candidacy_mandate',
   'label': 'Lisa Badum (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53646'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492463,
  'entity_type': 'vote',
  'label': 'Tobias B. Bacherle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492463',
  'mandate': {'id': 54121,
   'entity_type': 'candidacy_mandate',
   'label': 'Tobias B. Bacherle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54121'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492462,
  'entity_type': 'vote',
  'label': 'Maik Außendorf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492462',
  'mandate': {'id': 53425,
   'entity_type': 'candidacy_mandate',
   'label': 'Maik Außendorf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53425'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492461,
  'entity_type': 'vote',
  'label': 'Andreas Audretsch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492461',
  'mandate': {'id': 53512,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Audretsch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53512'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492460,
  'entity_type': 'vote',
  'label': 'Luise Amtsberg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492460',
  'mandate': {'id': 54090,
   'entity_type': 'candidacy_mandate',
   'label': 'Luise Amtsberg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54090'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492459,
  'entity_type': 'vote',
  'label': 'Stephanie Aeffner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492459',
  'mandate': {'id': 53694,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephanie Aeffner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53694'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 321,
   'entity_type': 'fraction',
   'label': 'BÜNDNIS 90/DIE GRÜNEN (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/321'}},
 {'id': 492458,
  'entity_type': 'vote',
  'label': 'Nicolas Zippelius - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492458',
  'mandate': {'id': 53952,
   'entity_type': 'candidacy_mandate',
   'label': 'Nicolas Zippelius (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53952'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492457,
  'entity_type': 'vote',
  'label': 'Paul Ziemiak - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492457',
  'mandate': {'id': 53853,
   'entity_type': 'candidacy_mandate',
   'label': 'Paul Ziemiak (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53853'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492456,
  'entity_type': 'vote',
  'label': 'Emmi Zeulner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492456',
  'mandate': {'id': 53930,
   'entity_type': 'candidacy_mandate',
   'label': 'Emmi Zeulner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53930'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492455,
  'entity_type': 'vote',
  'label': 'Mareike Lotte Wulf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492455',
  'mandate': {'id': 53448,
   'entity_type': 'candidacy_mandate',
   'label': 'Mareike Lotte Wulf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53448'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492454,
  'entity_type': 'vote',
  'label': 'Mechthilde Wittmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492454',
  'mandate': {'id': 53942,
   'entity_type': 'candidacy_mandate',
   'label': 'Mechthilde Wittmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53942'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492453,
  'entity_type': 'vote',
  'label': 'Tobias Winkler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492453',
  'mandate': {'id': 53933,
   'entity_type': 'candidacy_mandate',
   'label': 'Tobias Winkler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53933'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492452,
  'entity_type': 'vote',
  'label': 'Elisabeth Winkelmeier-Becker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492452',
  'mandate': {'id': 53802,
   'entity_type': 'candidacy_mandate',
   'label': 'Elisabeth Winkelmeier-Becker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53802'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492451,
  'entity_type': 'vote',
  'label': 'Klaus-Peter Willsch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492451',
  'mandate': {'id': 53881,
   'entity_type': 'candidacy_mandate',
   'label': 'Klaus-Peter Willsch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53881'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492450,
  'entity_type': 'vote',
  'label': 'Klaus Wiener - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492450',
  'mandate': {'id': 53809,
   'entity_type': 'candidacy_mandate',
   'label': 'Klaus Wiener (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53809'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492449,
  'entity_type': 'vote',
  'label': 'Annette Widmann-Mauz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492449',
  'mandate': {'id': 53970,
   'entity_type': 'candidacy_mandate',
   'label': 'Annette Widmann-Mauz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53970'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492448,
  'entity_type': 'vote',
  'label': 'Kai Whittaker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492448',
  'mandate': {'id': 53953,
   'entity_type': 'candidacy_mandate',
   'label': 'Kai Whittaker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53953'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492447,
  'entity_type': 'vote',
  'label': 'Sabine Weiss - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492447',
  'mandate': {'id': 53405,
   'entity_type': 'candidacy_mandate',
   'label': 'Sabine Weiss (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53405'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492446,
  'entity_type': 'vote',
  'label': 'Maria-Lena Weiss - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492446',
  'mandate': {'id': 53965,
   'entity_type': 'candidacy_mandate',
   'label': 'Maria-Lena Weiss (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53965'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492445,
  'entity_type': 'vote',
  'label': 'Anja Weisgerber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492445',
  'mandate': {'id': 54073,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Weisgerber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54073'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492444,
  'entity_type': 'vote',
  'label': 'Nina Warken - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492444',
  'mandate': {'id': 53956,
   'entity_type': 'candidacy_mandate',
   'label': 'Nina Warken (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53956'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492443,
  'entity_type': 'vote',
  'label': 'Marco Wanderwitz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492443',
  'mandate': {'id': 53517,
   'entity_type': 'candidacy_mandate',
   'label': 'Marco Wanderwitz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53517'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492442,
  'entity_type': 'vote',
  'label': 'Johann Wadephul - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492442',
  'mandate': {'id': 54082,
   'entity_type': 'candidacy_mandate',
   'label': 'Johann Wadephul (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54082'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492441,
  'entity_type': 'vote',
  'label': 'Christoph de Vries - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492441',
  'mandate': {'id': 53991,
   'entity_type': 'candidacy_mandate',
   'label': 'Christoph de Vries (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53991'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492440,
  'entity_type': 'vote',
  'label': 'Oliver Vogt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492440',
  'mandate': {'id': 54001,
   'entity_type': 'candidacy_mandate',
   'label': 'Oliver Vogt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54001'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492439,
  'entity_type': 'vote',
  'label': 'Kerstin Vieregge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492439',
  'mandate': {'id': 53999,
   'entity_type': 'candidacy_mandate',
   'label': 'Kerstin Vieregge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53999'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492438,
  'entity_type': 'vote',
  'label': 'Volker Ullrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492438',
  'mandate': {'id': 54075,
   'entity_type': 'candidacy_mandate',
   'label': 'Volker Ullrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54075'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492437,
  'entity_type': 'vote',
  'label': 'Markus Uhl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492437',
  'mandate': {'id': 54370,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Uhl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54370'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492436,
  'entity_type': 'vote',
  'label': 'Astrid Timmermann-Fechter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492436',
  'mandate': {'id': 53996,
   'entity_type': 'candidacy_mandate',
   'label': 'Astrid Timmermann-Fechter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53996'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492435,
  'entity_type': 'vote',
  'label': 'Antje Tillmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492435',
  'mandate': {'id': 53563,
   'entity_type': 'candidacy_mandate',
   'label': 'Antje Tillmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53563'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492434,
  'entity_type': 'vote',
  'label': 'Alexander Throm - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492434',
  'mandate': {'id': 54081,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Throm (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54081'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492433,
  'entity_type': 'vote',
  'label': 'Hans-Jürgen Thies - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492433',
  'mandate': {'id': 53849,
   'entity_type': 'candidacy_mandate',
   'label': 'Hans-Jürgen Thies (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53849'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492432,
  'entity_type': 'vote',
  'label': 'Hermann-Josef Tebroke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492432',
  'mandate': {'id': 53805,
   'entity_type': 'candidacy_mandate',
   'label': 'Hermann-Josef Tebroke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53805'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492431,
  'entity_type': 'vote',
  'label': 'Christina Stumpp - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492431',
  'mandate': {'id': 54078,
   'entity_type': 'candidacy_mandate',
   'label': 'Christina Stumpp (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54078'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492430,
  'entity_type': 'vote',
  'label': 'Max Straubinger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492430',
  'mandate': {'id': 53923,
   'entity_type': 'candidacy_mandate',
   'label': 'Max Straubinger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53923'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492429,
  'entity_type': 'vote',
  'label': 'Stephan Stracke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492429',
  'mandate': {'id': 53943,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Stracke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53943'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492428,
  'entity_type': 'vote',
  'label': 'Gero Storjohann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492428',
  'mandate': {'id': 54085,
   'entity_type': 'candidacy_mandate',
   'label': 'Gero Storjohann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54085'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': 'fell_ill',
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492427,
  'entity_type': 'vote',
  'label': 'Diana Stöcker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492427',
  'mandate': {'id': 53962,
   'entity_type': 'candidacy_mandate',
   'label': 'Diana Stöcker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53962'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492426,
  'entity_type': 'vote',
  'label': 'Dieter Stier - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492426',
  'mandate': {'id': 53778,
   'entity_type': 'candidacy_mandate',
   'label': 'Dieter Stier (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53778'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492425,
  'entity_type': 'vote',
  'label': 'Christian von Stetten - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492425',
  'mandate': {'id': 53948,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian von Stetten (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53948'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492424,
  'entity_type': 'vote',
  'label': 'Johannes Steiniger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492424',
  'mandate': {'id': 53909,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Steiniger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53909'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492423,
  'entity_type': 'vote',
  'label': 'Albert Stegemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492423',
  'mandate': {'id': 53736,
   'entity_type': 'candidacy_mandate',
   'label': 'Albert Stegemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53736'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492422,
  'entity_type': 'vote',
  'label': 'Wolfgang Stefinger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492422',
  'mandate': {'id': 54063,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Stefinger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54063'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492421,
  'entity_type': 'vote',
  'label': 'Katrin Staffler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492421',
  'mandate': {'id': 53916,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Staffler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53916'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492420,
  'entity_type': 'vote',
  'label': 'Jens Spahn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492420',
  'mandate': {'id': 53829,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Spahn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53829'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492419,
  'entity_type': 'vote',
  'label': 'Tino Sorge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492419',
  'mandate': {'id': 53500,
   'entity_type': 'candidacy_mandate',
   'label': 'Tino Sorge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53500'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492418,
  'entity_type': 'vote',
  'label': 'Björn Simon - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492418',
  'mandate': {'id': 53887,
   'entity_type': 'candidacy_mandate',
   'label': 'Björn Simon (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53887'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492417,
  'entity_type': 'vote',
  'label': 'Thomas Silberhorn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492417',
  'mandate': {'id': 53927,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Silberhorn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53927'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492416,
  'entity_type': 'vote',
  'label': 'Detlef Seif - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492416',
  'mandate': {'id': 53797,
   'entity_type': 'candidacy_mandate',
   'label': 'Detlef Seif (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53797'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492415,
  'entity_type': 'vote',
  'label': 'Armin Schwarz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492415',
  'mandate': {'id': 53540,
   'entity_type': 'candidacy_mandate',
   'label': 'Armin Schwarz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53540'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492414,
  'entity_type': 'vote',
  'label': 'Felix Schreiner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492414',
  'mandate': {'id': 53968,
   'entity_type': 'candidacy_mandate',
   'label': 'Felix Schreiner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53968'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492413,
  'entity_type': 'vote',
  'label': 'Nadine Schön - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492413',
  'mandate': {'id': 54369,
   'entity_type': 'candidacy_mandate',
   'label': 'Nadine Schön (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54369'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492412,
  'entity_type': 'vote',
  'label': 'Patrick Schnieder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492412',
  'mandate': {'id': 53903,
   'entity_type': 'candidacy_mandate',
   'label': 'Patrick Schnieder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53903'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492411,
  'entity_type': 'vote',
  'label': 'Jana Schimke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492411',
  'mandate': {'id': 53489,
   'entity_type': 'candidacy_mandate',
   'label': 'Jana Schimke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53489'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492410,
  'entity_type': 'vote',
  'label': 'Andreas Scheuer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492410',
  'mandate': {'id': 54069,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Scheuer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54069'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492409,
  'entity_type': 'vote',
  'label': 'Christiane Schenderlein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492409',
  'mandate': {'id': 53518,
   'entity_type': 'candidacy_mandate',
   'label': 'Christiane Schenderlein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53518'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492408,
  'entity_type': 'vote',
  'label': 'Wolfgang Schäuble - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492408',
  'mandate': {'id': 53964,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Schäuble (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53964'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492407,
  'entity_type': 'vote',
  'label': 'Catarina dos Santos-Wintz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492407',
  'mandate': {'id': 53997,
   'entity_type': 'candidacy_mandate',
   'label': 'Catarina dos Santos-Wintz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53997'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492406,
  'entity_type': 'vote',
  'label': 'Albert Rupprecht - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492406',
  'mandate': {'id': 54071,
   'entity_type': 'candidacy_mandate',
   'label': 'Albert Rupprecht (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54071'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492405,
  'entity_type': 'vote',
  'label': 'Erwin Rüddel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492405',
  'mandate': {'id': 53898,
   'entity_type': 'candidacy_mandate',
   'label': 'Erwin Rüddel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53898'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492404,
  'entity_type': 'vote',
  'label': 'Thomas Röwekamp - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492404',
  'mandate': {'id': 53484,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Röwekamp (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53484'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492403,
  'entity_type': 'vote',
  'label': 'Stefan Rouenhoff - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492403',
  'mandate': {'id': 53817,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Rouenhoff (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53817'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492402,
  'entity_type': 'vote',
  'label': 'Norbert Röttgen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492402',
  'mandate': {'id': 53803,
   'entity_type': 'candidacy_mandate',
   'label': 'Norbert Röttgen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53803'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492401,
  'entity_type': 'vote',
  'label': 'Lars Rohwer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492401',
  'mandate': {'id': 53863,
   'entity_type': 'candidacy_mandate',
   'label': 'Lars Rohwer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53863'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492400,
  'entity_type': 'vote',
  'label': 'Josef Rief - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492400',
  'mandate': {'id': 53972,
   'entity_type': 'candidacy_mandate',
   'label': 'Josef Rief (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53972'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492399,
  'entity_type': 'vote',
  'label': 'Markus Reichel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492399',
  'mandate': {'id': 53862,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Reichel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53862'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492398,
  'entity_type': 'vote',
  'label': 'Henning Rehbaum - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492398',
  'mandate': {'id': 53835,
   'entity_type': 'candidacy_mandate',
   'label': 'Henning Rehbaum (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53835'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492397,
  'entity_type': 'vote',
  'label': 'Peter Ramsauer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492397',
  'mandate': {'id': 53920,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Ramsauer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53920'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492396,
  'entity_type': 'vote',
  'label': 'Alois Rainer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492396',
  'mandate': {'id': 54070,
   'entity_type': 'candidacy_mandate',
   'label': 'Alois Rainer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54070'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492395,
  'entity_type': 'vote',
  'label': 'Alexander Radwan - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492395',
  'mandate': {'id': 54067,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Radwan (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54067'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492394,
  'entity_type': 'vote',
  'label': 'Kerstin Radomski - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492394',
  'mandate': {'id': 54002,
   'entity_type': 'candidacy_mandate',
   'label': 'Kerstin Radomski (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54002'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492393,
  'entity_type': 'vote',
  'label': 'Thomas Rachel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492393',
  'mandate': {'id': 53795,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Rachel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53795'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492392,
  'entity_type': 'vote',
  'label': 'Martin Plum - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492392',
  'mandate': {'id': 53816,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Plum (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53816'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492391,
  'entity_type': 'vote',
  'label': 'Christoph Ploß - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492391',
  'mandate': {'id': 53990,
   'entity_type': 'candidacy_mandate',
   'label': 'Christoph Ploß (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53990'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492390,
  'entity_type': 'vote',
  'label': 'Stephan Pilsinger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492390',
  'mandate': {'id': 54065,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Pilsinger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54065'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492389,
  'entity_type': 'vote',
  'label': 'Henning Otte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492389',
  'mandate': {'id': 53749,
   'entity_type': 'candidacy_mandate',
   'label': 'Henning Otte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53749'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492388,
  'entity_type': 'vote',
  'label': 'Josef Oster - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492388',
  'mandate': {'id': 53900,
   'entity_type': 'candidacy_mandate',
   'label': 'Josef Oster (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53900'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492387,
  'entity_type': 'vote',
  'label': 'Florian Oßner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492387',
  'mandate': {'id': 53922,
   'entity_type': 'candidacy_mandate',
   'label': 'Florian Oßner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53922'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492386,
  'entity_type': 'vote',
  'label': 'Moritz Oppelt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492386',
  'mandate': {'id': 53957,
   'entity_type': 'candidacy_mandate',
   'label': 'Moritz Oppelt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53957'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492385,
  'entity_type': 'vote',
  'label': 'Wilfried Oellers - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492385',
  'mandate': {'id': 53794,
   'entity_type': 'candidacy_mandate',
   'label': 'Wilfried Oellers (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53794'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492384,
  'entity_type': 'vote',
  'label': 'Petra Nicolaisen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492384',
  'mandate': {'id': 54084,
   'entity_type': 'candidacy_mandate',
   'label': 'Petra Nicolaisen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54084'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492383,
  'entity_type': 'vote',
  'label': 'Stefan Nacke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492383',
  'mandate': {'id': 54000,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Nacke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54000'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492382,
  'entity_type': 'vote',
  'label': 'Stefan Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492382',
  'mandate': {'id': 53932,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53932'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492381,
  'entity_type': 'vote',
  'label': 'Carsten Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492381',
  'mandate': {'id': 53447,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53447'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492380,
  'entity_type': 'vote',
  'label': 'Sepp Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492380',
  'mandate': {'id': 53775,
   'entity_type': 'candidacy_mandate',
   'label': 'Sepp Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53775'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492379,
  'entity_type': 'vote',
  'label': 'Florian Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492379',
  'mandate': {'id': 53852,
   'entity_type': 'candidacy_mandate',
   'label': 'Florian Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53852'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492378,
  'entity_type': 'vote',
  'label': 'Axel Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492378',
  'mandate': {'id': 53974,
   'entity_type': 'candidacy_mandate',
   'label': 'Axel Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53974'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492377,
  'entity_type': 'vote',
  'label': 'Maximilian Mörseburg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492377',
  'mandate': {'id': 54076,
   'entity_type': 'candidacy_mandate',
   'label': 'Maximilian Mörseburg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54076'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492376,
  'entity_type': 'vote',
  'label': 'Dietrich Monstadt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492376',
  'mandate': {'id': 53981,
   'entity_type': 'candidacy_mandate',
   'label': 'Dietrich Monstadt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53981'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492375,
  'entity_type': 'vote',
  'label': 'Mathias Middelberg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492375',
  'mandate': {'id': 53443,
   'entity_type': 'candidacy_mandate',
   'label': 'Mathias Middelberg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53443'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492374,
  'entity_type': 'vote',
  'label': 'Jan Metzler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492374',
  'mandate': {'id': 53907,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Metzler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53907'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492373,
  'entity_type': 'vote',
  'label': 'Friedrich Merz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492373',
  'mandate': {'id': 53850,
   'entity_type': 'candidacy_mandate',
   'label': 'Friedrich Merz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53850'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492372,
  'entity_type': 'vote',
  'label': 'Michael Meister - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492372',
  'mandate': {'id': 53890,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Meister (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53890'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492371,
  'entity_type': 'vote',
  'label': 'Volker Mayer-Lay - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492371',
  'mandate': {'id': 53973,
   'entity_type': 'candidacy_mandate',
   'label': 'Volker Mayer-Lay (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53973'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492370,
  'entity_type': 'vote',
  'label': 'Stephan Mayer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492370',
  'mandate': {'id': 53913,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Mayer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53913'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492369,
  'entity_type': 'vote',
  'label': 'Andreas Mattfeldt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492369',
  'mandate': {'id': 53739,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Mattfeldt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53739'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492368,
  'entity_type': 'vote',
  'label': 'Yvonne Magwas - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492368',
  'mandate': {'id': 53869,
   'entity_type': 'candidacy_mandate',
   'label': 'Yvonne Magwas (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53869'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492367,
  'entity_type': 'vote',
  'label': 'Klaus Mack - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492367',
  'mandate': {'id': 53960,
   'entity_type': 'candidacy_mandate',
   'label': 'Klaus Mack (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53960'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492366,
  'entity_type': 'vote',
  'label': 'Daniela Ludwig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492366',
  'mandate': {'id': 53918,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniela Ludwig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53918'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492365,
  'entity_type': 'vote',
  'label': 'Jan-Marco Luczak - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492365',
  'mandate': {'id': 53509,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan-Marco Luczak (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53509'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492364,
  'entity_type': 'vote',
  'label': 'Bernhard Loos - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492364',
  'mandate': {'id': 54062,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernhard Loos (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54062'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492363,
  'entity_type': 'vote',
  'label': 'Patricia Lips - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492363',
  'mandate': {'id': 53538,
   'entity_type': 'candidacy_mandate',
   'label': 'Patricia Lips (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53538'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492362,
  'entity_type': 'vote',
  'label': 'Carsten Linnemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492362',
  'mandate': {'id': 54131,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Linnemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54131'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492361,
  'entity_type': 'vote',
  'label': 'Andrea Lindholz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492361',
  'mandate': {'id': 53937,
   'entity_type': 'candidacy_mandate',
   'label': 'Andrea Lindholz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53937'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492360,
  'entity_type': 'vote',
  'label': 'Andreas Lenz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492360',
  'mandate': {'id': 53914,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Lenz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53914'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492359,
  'entity_type': 'vote',
  'label': 'Katja Leikert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492359',
  'mandate': {'id': 53539,
   'entity_type': 'candidacy_mandate',
   'label': 'Katja Leikert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53539'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492358,
  'entity_type': 'vote',
  'label': 'Paul Lehrieder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492358',
  'mandate': {'id': 54074,
   'entity_type': 'candidacy_mandate',
   'label': 'Paul Lehrieder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54074'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492357,
  'entity_type': 'vote',
  'label': 'Jens Lehmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492357',
  'mandate': {'id': 53855,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Lehmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53855'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492356,
  'entity_type': 'vote',
  'label': 'Silke Launert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492356',
  'mandate': {'id': 53928,
   'entity_type': 'candidacy_mandate',
   'label': 'Silke Launert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53928'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492355,
  'entity_type': 'vote',
  'label': 'Armin Laschet - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492355',
  'mandate': {'id': 53404,
   'entity_type': 'candidacy_mandate',
   'label': 'Armin Laschet (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53404'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492354,
  'entity_type': 'vote',
  'label': 'Ulrich Lange - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492354',
  'mandate': {'id': 53940,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulrich Lange (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53940'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492353,
  'entity_type': 'vote',
  'label': 'Tilman Kuban - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492353',
  'mandate': {'id': 53446,
   'entity_type': 'candidacy_mandate',
   'label': 'Tilman Kuban (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53446'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492352,
  'entity_type': 'vote',
  'label': 'Günter Krings - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492352',
  'mandate': {'id': 53814,
   'entity_type': 'candidacy_mandate',
   'label': 'Günter Krings (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53814'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492351,
  'entity_type': 'vote',
  'label': 'Gunther Krichbaum - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492351',
  'mandate': {'id': 53959,
   'entity_type': 'candidacy_mandate',
   'label': 'Gunther Krichbaum (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53959'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492350,
  'entity_type': 'vote',
  'label': 'Carsten Körber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492350',
  'mandate': {'id': 53519,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Körber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53519'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492349,
  'entity_type': 'vote',
  'label': 'Markus Koob - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492349',
  'mandate': {'id': 53879,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Koob (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53879'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492348,
  'entity_type': 'vote',
  'label': 'Anne König - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492348',
  'mandate': {'id': 53831,
   'entity_type': 'candidacy_mandate',
   'label': 'Anne König (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53831'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492347,
  'entity_type': 'vote',
  'label': 'Jens Koeppen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492347',
  'mandate': {'id': 53487,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Koeppen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53487'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492346,
  'entity_type': 'vote',
  'label': 'Axel Knoerig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492346',
  'mandate': {'id': 53738,
   'entity_type': 'candidacy_mandate',
   'label': 'Axel Knoerig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53738'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492345,
  'entity_type': 'vote',
  'label': 'Julia Klöckner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492345',
  'mandate': {'id': 53571,
   'entity_type': 'candidacy_mandate',
   'label': 'Julia Klöckner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53571'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492344,
  'entity_type': 'vote',
  'label': 'Volkmar Klein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492344',
  'mandate': {'id': 53851,
   'entity_type': 'candidacy_mandate',
   'label': 'Volkmar Klein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53851'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492343,
  'entity_type': 'vote',
  'label': 'Ottilie Klein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492343',
  'mandate': {'id': 54133,
   'entity_type': 'candidacy_mandate',
   'label': 'Ottilie Klein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54133'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492342,
  'entity_type': 'vote',
  'label': 'Georg Kippels - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492342',
  'mandate': {'id': 53796,
   'entity_type': 'candidacy_mandate',
   'label': 'Georg Kippels (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53796'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492341,
  'entity_type': 'vote',
  'label': 'Michael Kießling - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492341',
  'mandate': {'id': 53919,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Kießling (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53919'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492340,
  'entity_type': 'vote',
  'label': 'Roderich Kiesewetter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492340',
  'mandate': {'id': 53950,
   'entity_type': 'candidacy_mandate',
   'label': 'Roderich Kiesewetter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53950'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492339,
  'entity_type': 'vote',
  'label': 'Ronja Kemmer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492339',
  'mandate': {'id': 53971,
   'entity_type': 'candidacy_mandate',
   'label': 'Ronja Kemmer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53971'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492338,
  'entity_type': 'vote',
  'label': 'Anja Karliczek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492338',
  'mandate': {'id': 53833,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Karliczek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53833'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492337,
  'entity_type': 'vote',
  'label': 'Ingmar Jung - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492337',
  'mandate': {'id': 53882,
   'entity_type': 'candidacy_mandate',
   'label': 'Ingmar Jung (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53882'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492336,
  'entity_type': 'vote',
  'label': 'Andreas Jung - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492336',
  'mandate': {'id': 53967,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Jung (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53967'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492335,
  'entity_type': 'vote',
  'label': 'Thomas Jarzombek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492335',
  'mandate': {'id': 53811,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Jarzombek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53811'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492334,
  'entity_type': 'vote',
  'label': 'Anne Janssen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492334',
  'mandate': {'id': 53445,
   'entity_type': 'candidacy_mandate',
   'label': 'Anne Janssen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53445'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492333,
  'entity_type': 'vote',
  'label': 'Erich Irlstorfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492333',
  'mandate': {'id': 53915,
   'entity_type': 'candidacy_mandate',
   'label': 'Erich Irlstorfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53915'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492332,
  'entity_type': 'vote',
  'label': 'Hubert Hüppe - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492332',
  'mandate': {'id': 54003,
   'entity_type': 'candidacy_mandate',
   'label': 'Hubert Hüppe (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54003'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492331,
  'entity_type': 'vote',
  'label': 'Franziska Hoppermann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492331',
  'mandate': {'id': 54099,
   'entity_type': 'candidacy_mandate',
   'label': 'Franziska Hoppermann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54099'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492330,
  'entity_type': 'vote',
  'label': 'Hendrik Hoppenstedt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492330',
  'mandate': {'id': 53441,
   'entity_type': 'candidacy_mandate',
   'label': 'Hendrik Hoppenstedt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53441'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492329,
  'entity_type': 'vote',
  'label': 'Alexander Hoffmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492329',
  'mandate': {'id': 53938,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Hoffmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53938'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492328,
  'entity_type': 'vote',
  'label': 'Christian Hirte - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492328',
  'mandate': {'id': 53562,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Hirte (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53562'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492327,
  'entity_type': 'vote',
  'label': 'Susanne Hierl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492327',
  'mandate': {'id': 53924,
   'entity_type': 'candidacy_mandate',
   'label': 'Susanne Hierl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53924'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492326,
  'entity_type': 'vote',
  'label': 'Ansgar Heveling - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492326',
  'mandate': {'id': 53815,
   'entity_type': 'candidacy_mandate',
   'label': 'Ansgar Heveling (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53815'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492325,
  'entity_type': 'vote',
  'label': 'Marc Henrichmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492325',
  'mandate': {'id': 53832,
   'entity_type': 'candidacy_mandate',
   'label': 'Marc Henrichmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53832'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492324,
  'entity_type': 'vote',
  'label': 'Michael Hennrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492324',
  'mandate': {'id': 53946,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Hennrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53946'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492323,
  'entity_type': 'vote',
  'label': 'Mark Helfrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492323',
  'mandate': {'id': 54049,
   'entity_type': 'candidacy_mandate',
   'label': 'Mark Helfrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54049'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492322,
  'entity_type': 'vote',
  'label': 'Thomas Heilmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492322',
  'mandate': {'id': 53784,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Heilmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53784'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492321,
  'entity_type': 'vote',
  'label': 'Mechthild Heil - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492321',
  'mandate': {'id': 53899,
   'entity_type': 'candidacy_mandate',
   'label': 'Mechthild Heil (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53899'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492320,
  'entity_type': 'vote',
  'label': 'Stefan Heck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492320',
  'mandate': {'id': 53541,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Heck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53541'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492319,
  'entity_type': 'vote',
  'label': 'Matthias Hauer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492319',
  'mandate': {'id': 53825,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Hauer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53825'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492318,
  'entity_type': 'vote',
  'label': 'Jürgen Hardt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492318',
  'mandate': {'id': 54378,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Hardt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54378'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492317,
  'entity_type': 'vote',
  'label': 'Florian Hahn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492317',
  'mandate': {'id': 54066,
   'entity_type': 'candidacy_mandate',
   'label': 'Florian Hahn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54066'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492316,
  'entity_type': 'vote',
  'label': 'Christian Haase - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492316',
  'mandate': {'id': 54130,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Haase (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54130'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492315,
  'entity_type': 'vote',
  'label': 'Olav Gutting - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492315',
  'mandate': {'id': 53958,
   'entity_type': 'candidacy_mandate',
   'label': 'Olav Gutting (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53958'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492314,
  'entity_type': 'vote',
  'label': 'Fritz Güntzler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492314',
  'mandate': {'id': 53449,
   'entity_type': 'candidacy_mandate',
   'label': 'Fritz Güntzler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53449'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492313,
  'entity_type': 'vote',
  'label': 'Serap Güler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492313',
  'mandate': {'id': 53995,
   'entity_type': 'candidacy_mandate',
   'label': 'Serap Güler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53995'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492312,
  'entity_type': 'vote',
  'label': 'Monika Grütters - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492312',
  'mandate': {'id': 53782,
   'entity_type': 'candidacy_mandate',
   'label': 'Monika Grütters (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53782'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492311,
  'entity_type': 'vote',
  'label': 'Oliver Grundmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492311',
  'mandate': {'id': 53735,
   'entity_type': 'candidacy_mandate',
   'label': 'Oliver Grundmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53735'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492310,
  'entity_type': 'vote',
  'label': 'Manfred Grund - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492310',
  'mandate': {'id': 53891,
   'entity_type': 'candidacy_mandate',
   'label': 'Manfred Grund (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53891'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492309,
  'entity_type': 'vote',
  'label': 'Markus Grübel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492309',
  'mandate': {'id': 53945,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Grübel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53945'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492308,
  'entity_type': 'vote',
  'label': 'Michael Grosse-Brömer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492308',
  'mandate': {'id': 53442,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Grosse-Brömer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53442'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492307,
  'entity_type': 'vote',
  'label': 'Hermann Gröhe - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492307',
  'mandate': {'id': 53813,
   'entity_type': 'candidacy_mandate',
   'label': 'Hermann Gröhe (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53813'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492306,
  'entity_type': 'vote',
  'label': 'Inge Gräßle - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492306',
  'mandate': {'id': 53949,
   'entity_type': 'candidacy_mandate',
   'label': 'Inge Gräßle (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53949'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492305,
  'entity_type': 'vote',
  'label': 'Fabian Gramling - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492305',
  'mandate': {'id': 54080,
   'entity_type': 'candidacy_mandate',
   'label': 'Fabian Gramling (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54080'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492304,
  'entity_type': 'vote',
  'label': 'Jonas Geissler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492304',
  'mandate': {'id': 54132,
   'entity_type': 'candidacy_mandate',
   'label': 'Jonas Geissler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54132'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492303,
  'entity_type': 'vote',
  'label': 'Thomas Gebhart - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492303',
  'mandate': {'id': 53572,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Gebhart (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53572'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492302,
  'entity_type': 'vote',
  'label': 'Ingo Gädechens - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492302',
  'mandate': {'id': 54083,
   'entity_type': 'candidacy_mandate',
   'label': 'Ingo Gädechens (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54083'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492301,
  'entity_type': 'vote',
  'label': 'Michael Frieser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492301',
  'mandate': {'id': 53935,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Frieser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53935'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492300,
  'entity_type': 'vote',
  'label': 'Hans-Peter Friedrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492300',
  'mandate': {'id': 53929,
   'entity_type': 'candidacy_mandate',
   'label': 'Hans-Peter Friedrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53929'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492299,
  'entity_type': 'vote',
  'label': 'Thorsten Frei - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492299',
  'mandate': {'id': 53966,
   'entity_type': 'candidacy_mandate',
   'label': 'Thorsten Frei (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53966'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492298,
  'entity_type': 'vote',
  'label': 'Enak Ferlemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492298',
  'mandate': {'id': 53444,
   'entity_type': 'candidacy_mandate',
   'label': 'Enak Ferlemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53444'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492297,
  'entity_type': 'vote',
  'label': 'Uwe Feiler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492297',
  'mandate': {'id': 53488,
   'entity_type': 'candidacy_mandate',
   'label': 'Uwe Feiler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53488'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492296,
  'entity_type': 'vote',
  'label': 'Hermann Färber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492296',
  'mandate': {'id': 53947,
   'entity_type': 'candidacy_mandate',
   'label': 'Hermann Färber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53947'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492295,
  'entity_type': 'vote',
  'label': 'Thomas Erndl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492295',
  'mandate': {'id': 54068,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Erndl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54068'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492294,
  'entity_type': 'vote',
  'label': 'Martina Englhardt-Kopf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492294',
  'mandate': {'id': 53926,
   'entity_type': 'candidacy_mandate',
   'label': 'Martina Englhardt-Kopf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53926'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492293,
  'entity_type': 'vote',
  'label': 'Alexander Engelhard - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492293',
  'mandate': {'id': 53941,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Engelhard (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53941'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492292,
  'entity_type': 'vote',
  'label': 'Ralph Edelhäußer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492292',
  'mandate': {'id': 53936,
   'entity_type': 'candidacy_mandate',
   'label': 'Ralph Edelhäußer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53936'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492291,
  'entity_type': 'vote',
  'label': 'Hansjörg Durz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492291',
  'mandate': {'id': 53939,
   'entity_type': 'candidacy_mandate',
   'label': 'Hansjörg Durz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53939'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492290,
  'entity_type': 'vote',
  'label': 'Michael Donth - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492290',
  'mandate': {'id': 53969,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Donth (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53969'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492289,
  'entity_type': 'vote',
  'label': 'Alexander Dobrindt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492289',
  'mandate': {'id': 53921,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Dobrindt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53921'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492288,
  'entity_type': 'vote',
  'label': 'Astrid Damerow - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492288',
  'mandate': {'id': 54048,
   'entity_type': 'candidacy_mandate',
   'label': 'Astrid Damerow (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54048'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492287,
  'entity_type': 'vote',
  'label': 'Mario Czaja - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492287',
  'mandate': {'id': 53790,
   'entity_type': 'candidacy_mandate',
   'label': 'Mario Czaja (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53790'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492286,
  'entity_type': 'vote',
  'label': 'Gitta Connemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492286',
  'mandate': {'id': 53730,
   'entity_type': 'candidacy_mandate',
   'label': 'Gitta Connemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53730'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492285,
  'entity_type': 'vote',
  'label': 'Yannick Bury - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492285',
  'mandate': {'id': 53963,
   'entity_type': 'candidacy_mandate',
   'label': 'Yannick Bury (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53963'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492284,
  'entity_type': 'vote',
  'label': 'Marlon Bröhr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492284',
  'mandate': {'id': 53901,
   'entity_type': 'candidacy_mandate',
   'label': 'Marlon Bröhr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53901'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492283,
  'entity_type': 'vote',
  'label': 'Carsten Brodesser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492283',
  'mandate': {'id': 53804,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Brodesser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53804'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492282,
  'entity_type': 'vote',
  'label': 'Ralph Brinkhaus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492282',
  'mandate': {'id': 53836,
   'entity_type': 'candidacy_mandate',
   'label': 'Ralph Brinkhaus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53836'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492281,
  'entity_type': 'vote',
  'label': 'Michael Breilmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492281',
  'mandate': {'id': 53998,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Breilmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53998'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492280,
  'entity_type': 'vote',
  'label': 'Heike Brehmer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492280',
  'mandate': {'id': 53773,
   'entity_type': 'candidacy_mandate',
   'label': 'Heike Brehmer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53773'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492279,
  'entity_type': 'vote',
  'label': 'Sebastian Brehm - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492279',
  'mandate': {'id': 53934,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Brehm (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53934'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492278,
  'entity_type': 'vote',
  'label': 'Silvia Breher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492278',
  'mandate': {'id': 53737,
   'entity_type': 'candidacy_mandate',
   'label': 'Silvia Breher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53737'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492277,
  'entity_type': 'vote',
  'label': 'Helge Braun - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492277',
  'mandate': {'id': 53537,
   'entity_type': 'candidacy_mandate',
   'label': 'Helge Braun (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53537'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'abstain',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492276,
  'entity_type': 'vote',
  'label': 'Reinhard Brandl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492276',
  'mandate': {'id': 53917,
   'entity_type': 'candidacy_mandate',
   'label': 'Reinhard Brandl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53917'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492275,
  'entity_type': 'vote',
  'label': 'Michael Brand - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492275',
  'mandate': {'id': 53877,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Brand (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53877'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492274,
  'entity_type': 'vote',
  'label': 'Simone Borchardt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492274',
  'mandate': {'id': 53982,
   'entity_type': 'candidacy_mandate',
   'label': 'Simone Borchardt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53982'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492273,
  'entity_type': 'vote',
  'label': 'Steffen Bilger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492273',
  'mandate': {'id': 54079,
   'entity_type': 'candidacy_mandate',
   'label': 'Steffen Bilger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54079'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492272,
  'entity_type': 'vote',
  'label': 'Marc Biadacz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492272',
  'mandate': {'id': 54077,
   'entity_type': 'candidacy_mandate',
   'label': 'Marc Biadacz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54077'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492271,
  'entity_type': 'vote',
  'label': 'Peter Beyer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492271',
  'mandate': {'id': 53810,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Beyer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53810'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492270,
  'entity_type': 'vote',
  'label': 'André Berghegger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492270',
  'mandate': {'id': 53743,
   'entity_type': 'candidacy_mandate',
   'label': 'André Berghegger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53743'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492269,
  'entity_type': 'vote',
  'label': 'Thomas Bareiß - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492269',
  'mandate': {'id': 53975,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Bareiß (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53975'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492268,
  'entity_type': 'vote',
  'label': 'Dorothee Bär - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492268',
  'mandate': {'id': 54072,
   'entity_type': 'candidacy_mandate',
   'label': 'Dorothee Bär (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54072'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492267,
  'entity_type': 'vote',
  'label': 'Peter Aumer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492267',
  'mandate': {'id': 53925,
   'entity_type': 'candidacy_mandate',
   'label': 'Peter Aumer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53925'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492266,
  'entity_type': 'vote',
  'label': 'Artur Auernhammer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492266',
  'mandate': {'id': 53931,
   'entity_type': 'candidacy_mandate',
   'label': 'Artur Auernhammer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53931'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492265,
  'entity_type': 'vote',
  'label': 'Philipp Amthor - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492265',
  'mandate': {'id': 53980,
   'entity_type': 'candidacy_mandate',
   'label': 'Philipp Amthor (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53980'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492264,
  'entity_type': 'vote',
  'label': 'Norbert Maria Altenkamp - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492264',
  'mandate': {'id': 53884,
   'entity_type': 'candidacy_mandate',
   'label': 'Norbert Maria Altenkamp (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53884'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492263,
  'entity_type': 'vote',
  'label': 'Stephan Albani - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492263',
  'mandate': {'id': 53450,
   'entity_type': 'candidacy_mandate',
   'label': 'Stephan Albani (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53450'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492262,
  'entity_type': 'vote',
  'label': 'Knut Abraham - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492262',
  'mandate': {'id': 53490,
   'entity_type': 'candidacy_mandate',
   'label': 'Knut Abraham (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53490'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 320,
   'entity_type': 'fraction',
   'label': 'CDU/CSU (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/320'}},
 {'id': 492261,
  'entity_type': 'vote',
  'label': 'Katrin Zschau - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492261',
  'mandate': {'id': 53725,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Zschau (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53725'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492260,
  'entity_type': 'vote',
  'label': 'Armand Zorn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492260',
  'mandate': {'id': 53885,
   'entity_type': 'candidacy_mandate',
   'label': 'Armand Zorn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53885'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492259,
  'entity_type': 'vote',
  'label': 'Jens Zimmermann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492259',
  'mandate': {'id': 53889,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Zimmermann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53889'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492258,
  'entity_type': 'vote',
  'label': 'Stefan Zierke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492258',
  'mandate': {'id': 53762,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Zierke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53762'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492257,
  'entity_type': 'vote',
  'label': 'Gülistan Yüksel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492257',
  'mandate': {'id': 54016,
   'entity_type': 'candidacy_mandate',
   'label': 'Gülistan Yüksel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54016'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492256,
  'entity_type': 'vote',
  'label': 'Herbert Wollmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492256',
  'mandate': {'id': 53771,
   'entity_type': 'candidacy_mandate',
   'label': 'Herbert Wollmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53771'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492255,
  'entity_type': 'vote',
  'label': 'Dirk Wiese - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492255',
  'mandate': {'id': 54007,
   'entity_type': 'candidacy_mandate',
   'label': 'Dirk Wiese (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54007'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492254,
  'entity_type': 'vote',
  'label': 'Bernd Westphal - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492254',
  'mandate': {'id': 53753,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Westphal (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53753'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492253,
  'entity_type': 'vote',
  'label': 'Lena Werner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492253',
  'mandate': {'id': 53576,
   'entity_type': 'candidacy_mandate',
   'label': 'Lena Werner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53576'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492252,
  'entity_type': 'vote',
  'label': 'Joe Weingarten - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492252',
  'mandate': {'id': 53902,
   'entity_type': 'candidacy_mandate',
   'label': 'Joe Weingarten (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53902'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492251,
  'entity_type': 'vote',
  'label': 'Melanie Wegling - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492251',
  'mandate': {'id': 53886,
   'entity_type': 'candidacy_mandate',
   'label': 'Melanie Wegling (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53886'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': 'maternity_protection',
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492250,
  'entity_type': 'vote',
  'label': 'Carmen Wegge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492250',
  'mandate': {'id': 53611,
   'entity_type': 'candidacy_mandate',
   'label': 'Carmen Wegge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53611'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492249,
  'entity_type': 'vote',
  'label': 'Hannes Walter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492249',
  'mandate': {'id': 53770,
   'entity_type': 'candidacy_mandate',
   'label': 'Hannes Walter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53770'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492248,
  'entity_type': 'vote',
  'label': 'Maja Wallstein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492248',
  'mandate': {'id': 53769,
   'entity_type': 'candidacy_mandate',
   'label': 'Maja Wallstein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53769'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492247,
  'entity_type': 'vote',
  'label': 'Carolin Wagner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492247',
  'mandate': {'id': 53613,
   'entity_type': 'candidacy_mandate',
   'label': 'Carolin Wagner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53613'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492246,
  'entity_type': 'vote',
  'label': 'Dirk Vöpel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492246',
  'mandate': {'id': 53822,
   'entity_type': 'candidacy_mandate',
   'label': 'Dirk Vöpel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53822'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492245,
  'entity_type': 'vote',
  'label': 'Marja-Liisa Völlers - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492245',
  'mandate': {'id': 53745,
   'entity_type': 'candidacy_mandate',
   'label': 'Marja-Liisa Völlers (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53745'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492244,
  'entity_type': 'vote',
  'label': 'Frank Ullrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492244',
  'mandate': {'id': 53897,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Ullrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53897'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492243,
  'entity_type': 'vote',
  'label': 'Derya Türk-Nachbaur - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492243',
  'mandate': {'id': 53681,
   'entity_type': 'candidacy_mandate',
   'label': 'Derya Türk-Nachbaur (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53681'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492242,
  'entity_type': 'vote',
  'label': 'Anja Troff-Schaffarzyk - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492242',
  'mandate': {'id': 53451,
   'entity_type': 'candidacy_mandate',
   'label': 'Anja Troff-Schaffarzyk (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53451'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492241,
  'entity_type': 'vote',
  'label': 'Carsten Träger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492241',
  'mandate': {'id': 53594,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Träger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53594'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492240,
  'entity_type': 'vote',
  'label': 'Markus Töns - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492240',
  'mandate': {'id': 53828,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Töns (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53828'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492239,
  'entity_type': 'vote',
  'label': 'Michael Thews - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492239',
  'mandate': {'id': 53848,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Thews (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53848'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492238,
  'entity_type': 'vote',
  'label': 'Claudia Tausend - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492238',
  'mandate': {'id': 53601,
   'entity_type': 'candidacy_mandate',
   'label': 'Claudia Tausend (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53601'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492237,
  'entity_type': 'vote',
  'label': 'Ruppert Stüwe - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492237',
  'mandate': {'id': 54107,
   'entity_type': 'candidacy_mandate',
   'label': 'Ruppert Stüwe (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54107'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492236,
  'entity_type': 'vote',
  'label': 'Nadja Sthamer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492236',
  'mandate': {'id': 53527,
   'entity_type': 'candidacy_mandate',
   'label': 'Nadja Sthamer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53527'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492235,
  'entity_type': 'vote',
  'label': 'Mathias Stein - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492235',
  'mandate': {'id': 54050,
   'entity_type': 'candidacy_mandate',
   'label': 'Mathias Stein (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54050'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492234,
  'entity_type': 'vote',
  'label': 'Ralf Stegner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492234',
  'mandate': {'id': 54051,
   'entity_type': 'candidacy_mandate',
   'label': 'Ralf Stegner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54051'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492233,
  'entity_type': 'vote',
  'label': 'Martina Stamm-Fibich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492233',
  'mandate': {'id': 53609,
   'entity_type': 'candidacy_mandate',
   'label': 'Martina Stamm-Fibich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53609'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492232,
  'entity_type': 'vote',
  'label': 'Svenja Stadler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492232',
  'mandate': {'id': 53741,
   'entity_type': 'candidacy_mandate',
   'label': 'Svenja Stadler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53741'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492231,
  'entity_type': 'vote',
  'label': 'Lina Seitzl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492231',
  'mandate': {'id': 53678,
   'entity_type': 'candidacy_mandate',
   'label': 'Lina Seitzl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53678'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492230,
  'entity_type': 'vote',
  'label': 'Rita Schwarzelühr-Sutter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492230',
  'mandate': {'id': 53666,
   'entity_type': 'candidacy_mandate',
   'label': 'Rita Schwarzelühr-Sutter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53666'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492229,
  'entity_type': 'vote',
  'label': 'Andreas Schwarz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492229',
  'mandate': {'id': 54137,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Schwarz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54137'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492228,
  'entity_type': 'vote',
  'label': 'Stefan Schwartze - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492228',
  'mandate': {'id': 53838,
   'entity_type': 'candidacy_mandate',
   'label': 'Stefan Schwartze (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53838'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492227,
  'entity_type': 'vote',
  'label': 'Frank Schwabe - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492227',
  'mandate': {'id': 53826,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Schwabe (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53826'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492226,
  'entity_type': 'vote',
  'label': 'Svenja Schulze - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492226',
  'mandate': {'id': 54004,
   'entity_type': 'candidacy_mandate',
   'label': 'Svenja Schulze (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54004'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492225,
  'entity_type': 'vote',
  'label': 'Michael Schrodi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492225',
  'mandate': {'id': 53604,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Schrodi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53604'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492224,
  'entity_type': 'vote',
  'label': 'Christian Schreider - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492224',
  'mandate': {'id': 53908,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Schreider (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53908'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492223,
  'entity_type': 'vote',
  'label': 'Johannes Schraps - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492223',
  'mandate': {'id': 53751,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Schraps (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53751'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492222,
  'entity_type': 'vote',
  'label': 'Olaf Scholz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492222',
  'mandate': {'id': 53766,
   'entity_type': 'candidacy_mandate',
   'label': 'Olaf Scholz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53766'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492221,
  'entity_type': 'vote',
  'label': 'Carsten Schneider - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492221',
  'mandate': {'id': 53895,
   'entity_type': 'candidacy_mandate',
   'label': 'Carsten Schneider (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53895'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492220,
  'entity_type': 'vote',
  'label': 'Daniel Schneider - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492220',
  'mandate': {'id': 53734,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniel Schneider (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53734'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492219,
  'entity_type': 'vote',
  'label': 'Dagmar Schmidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492219',
  'mandate': {'id': 53875,
   'entity_type': 'candidacy_mandate',
   'label': 'Dagmar Schmidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53875'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492218,
  'entity_type': 'vote',
  'label': 'Uwe Schmidt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492218',
  'mandate': {'id': 53760,
   'entity_type': 'candidacy_mandate',
   'label': 'Uwe Schmidt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53760'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492217,
  'entity_type': 'vote',
  'label': 'Nils Schmid - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492217',
  'mandate': {'id': 53665,
   'entity_type': 'candidacy_mandate',
   'label': 'Nils Schmid (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53665'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492216,
  'entity_type': 'vote',
  'label': 'Christoph Schmid - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492216',
  'mandate': {'id': 53600,
   'entity_type': 'candidacy_mandate',
   'label': 'Christoph Schmid (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53600'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492215,
  'entity_type': 'vote',
  'label': 'Timo Schisanowski - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492215',
  'mandate': {'id': 53841,
   'entity_type': 'candidacy_mandate',
   'label': 'Timo Schisanowski (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53841'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492214,
  'entity_type': 'vote',
  'label': 'Peggy Schierenbeck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492214',
  'mandate': {'id': 53453,
   'entity_type': 'candidacy_mandate',
   'label': 'Peggy Schierenbeck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53453'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492213,
  'entity_type': 'vote',
  'label': 'Udo Schiefner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492213',
  'mandate': {'id': 54008,
   'entity_type': 'candidacy_mandate',
   'label': 'Udo Schiefner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54008'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492212,
  'entity_type': 'vote',
  'label': 'Marianne Schieder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492212',
  'mandate': {'id': 53603,
   'entity_type': 'candidacy_mandate',
   'label': 'Marianne Schieder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53603'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492211,
  'entity_type': 'vote',
  'label': 'Nina Scheer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492211',
  'mandate': {'id': 54129,
   'entity_type': 'candidacy_mandate',
   'label': 'Nina Scheer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54129'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492210,
  'entity_type': 'vote',
  'label': 'Johannes Schätzl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492210',
  'mandate': {'id': 53608,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Schätzl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53608'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492209,
  'entity_type': 'vote',
  'label': 'Rebecca Schamber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492209',
  'mandate': {'id': 53748,
   'entity_type': 'candidacy_mandate',
   'label': 'Rebecca Schamber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53748'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492208,
  'entity_type': 'vote',
  'label': 'Axel Schäfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492208',
  'mandate': {'id': 53843,
   'entity_type': 'candidacy_mandate',
   'label': 'Axel Schäfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53843'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492207,
  'entity_type': 'vote',
  'label': 'Ingo Schäfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492207',
  'mandate': {'id': 53808,
   'entity_type': 'candidacy_mandate',
   'label': 'Ingo Schäfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53808'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492206,
  'entity_type': 'vote',
  'label': 'Johann Saathoff - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492206',
  'mandate': {'id': 53729,
   'entity_type': 'candidacy_mandate',
   'label': 'Johann Saathoff (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53729'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492205,
  'entity_type': 'vote',
  'label': 'Sarah Ryglewski - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492205',
  'mandate': {'id': 53759,
   'entity_type': 'candidacy_mandate',
   'label': 'Sarah Ryglewski (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53759'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492204,
  'entity_type': 'vote',
  'label': 'Bernd Rützel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492204',
  'mandate': {'id': 53598,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernd Rützel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53598'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492203,
  'entity_type': 'vote',
  'label': 'Tina Rudolph - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492203',
  'mandate': {'id': 53568,
   'entity_type': 'candidacy_mandate',
   'label': 'Tina Rudolph (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53568'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492202,
  'entity_type': 'vote',
  'label': 'Thorsten Rudolph - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492202',
  'mandate': {'id': 53573,
   'entity_type': 'candidacy_mandate',
   'label': 'Thorsten Rudolph (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53573'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492201,
  'entity_type': 'vote',
  'label': 'Michael Roth - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492201',
  'mandate': {'id': 53872,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Roth (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53872'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492200,
  'entity_type': 'vote',
  'label': 'Jessica Rosenthal - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492200',
  'mandate': {'id': 54014,
   'entity_type': 'candidacy_mandate',
   'label': 'Jessica Rosenthal (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54014'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492199,
  'entity_type': 'vote',
  'label': 'Martin Rosemann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492199',
  'mandate': {'id': 53667,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Rosemann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53667'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492198,
  'entity_type': 'vote',
  'label': 'Sebastian Roloff - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492198',
  'mandate': {'id': 53596,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Roloff (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53596'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492197,
  'entity_type': 'vote',
  'label': 'Dennis Rohde - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492197',
  'mandate': {'id': 53732,
   'entity_type': 'candidacy_mandate',
   'label': 'Dennis Rohde (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53732'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492196,
  'entity_type': 'vote',
  'label': 'Sönke Rix - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492196',
  'mandate': {'id': 54126,
   'entity_type': 'candidacy_mandate',
   'label': 'Sönke Rix (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54126'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492195,
  'entity_type': 'vote',
  'label': 'Daniel Rinkert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492195',
  'mandate': {'id': 57091,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniel Rinkert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/57091'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492194,
  'entity_type': 'vote',
  'label': 'Andreas Rimkus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492194',
  'mandate': {'id': 53812,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Rimkus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53812'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492193,
  'entity_type': 'vote',
  'label': 'Ye-One Rhie - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492193',
  'mandate': {'id': 54021,
   'entity_type': 'candidacy_mandate',
   'label': 'Ye-One Rhie (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54021'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492192,
  'entity_type': 'vote',
  'label': 'Achim Post - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492192',
  'mandate': {'id': 53839,
   'entity_type': 'candidacy_mandate',
   'label': 'Achim Post (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53839'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492191,
  'entity_type': 'vote',
  'label': 'Sabine Poschmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492191',
  'mandate': {'id': 53846,
   'entity_type': 'candidacy_mandate',
   'label': 'Sabine Poschmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53846'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492190,
  'entity_type': 'vote',
  'label': 'Jan Plobner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492190',
  'mandate': {'id': 53614,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Plobner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53614'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492189,
  'entity_type': 'vote',
  'label': 'Andreas Philippi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492189',
  'mandate': {'id': 53758,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Philippi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53758'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492188,
  'entity_type': 'vote',
  'label': 'Christian Petry - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492188',
  'mandate': {'id': 53978,
   'entity_type': 'candidacy_mandate',
   'label': 'Christian Petry (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53978'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492187,
  'entity_type': 'vote',
  'label': 'Jens Peick - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492187',
  'mandate': {'id': 53845,
   'entity_type': 'candidacy_mandate',
   'label': 'Jens Peick (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53845'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492186,
  'entity_type': 'vote',
  'label': 'Natalie Pawlik - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492186',
  'mandate': {'id': 53880,
   'entity_type': 'candidacy_mandate',
   'label': 'Natalie Pawlik (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53880'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492185,
  'entity_type': 'vote',
  'label': 'Mathias Papendieck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492185',
  'mandate': {'id': 53768,
   'entity_type': 'candidacy_mandate',
   'label': 'Mathias Papendieck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53768'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492184,
  'entity_type': 'vote',
  'label': 'Wiebke Papenbrock - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492184',
  'mandate': {'id': 53761,
   'entity_type': 'candidacy_mandate',
   'label': 'Wiebke Papenbrock (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53761'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492183,
  'entity_type': 'vote',
  'label': 'Christos Pantazis - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492183',
  'mandate': {'id': 53755,
   'entity_type': 'candidacy_mandate',
   'label': 'Christos Pantazis (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53755'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492182,
  'entity_type': 'vote',
  'label': 'Aydan Özoğuz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492182',
  'mandate': {'id': 54136,
   'entity_type': 'candidacy_mandate',
   'label': 'Aydan Özoğuz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54136'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492181,
  'entity_type': 'vote',
  'label': 'Mahmut Özdemir - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492181',
  'mandate': {'id': 53821,
   'entity_type': 'candidacy_mandate',
   'label': 'Mahmut Özdemir (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53821'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492180,
  'entity_type': 'vote',
  'label': 'Josephine Ortleb - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492180',
  'mandate': {'id': 53976,
   'entity_type': 'candidacy_mandate',
   'label': 'Josephine Ortleb (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53976'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492179,
  'entity_type': 'vote',
  'label': 'Lennard Oehl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492179',
  'mandate': {'id': 53883,
   'entity_type': 'candidacy_mandate',
   'label': 'Lennard Oehl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53883'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492178,
  'entity_type': 'vote',
  'label': 'Jörg Nürnberger - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492178',
  'mandate': {'id': 53610,
   'entity_type': 'candidacy_mandate',
   'label': 'Jörg Nürnberger (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53610'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492177,
  'entity_type': 'vote',
  'label': 'Dietmar Nietan - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492177',
  'mandate': {'id': 54012,
   'entity_type': 'candidacy_mandate',
   'label': 'Dietmar Nietan (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54012'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492176,
  'entity_type': 'vote',
  'label': 'Brian Nickholz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492176',
  'mandate': {'id': 53827,
   'entity_type': 'candidacy_mandate',
   'label': 'Brian Nickholz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53827'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492175,
  'entity_type': 'vote',
  'label': 'Rasha Nasr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492175',
  'mandate': {'id': 53525,
   'entity_type': 'candidacy_mandate',
   'label': 'Rasha Nasr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53525'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492174,
  'entity_type': 'vote',
  'label': 'Rolf Mützenich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492174',
  'mandate': {'id': 53800,
   'entity_type': 'candidacy_mandate',
   'label': 'Rolf Mützenich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53800'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492173,
  'entity_type': 'vote',
  'label': 'Michelle Müntefering - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492173',
  'mandate': {'id': 53844,
   'entity_type': 'candidacy_mandate',
   'label': 'Michelle Müntefering (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53844'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492172,
  'entity_type': 'vote',
  'label': 'Detlef Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492172',
  'mandate': {'id': 53865,
   'entity_type': 'candidacy_mandate',
   'label': 'Detlef Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53865'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492171,
  'entity_type': 'vote',
  'label': 'Michael Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492171',
  'mandate': {'id': 53785,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53785'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492170,
  'entity_type': 'vote',
  'label': 'Bettina Müller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492170',
  'mandate': {'id': 53878,
   'entity_type': 'candidacy_mandate',
   'label': 'Bettina Müller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53878'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492169,
  'entity_type': 'vote',
  'label': 'Siemtje Möller - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492169',
  'mandate': {'id': 53731,
   'entity_type': 'candidacy_mandate',
   'label': 'Siemtje Möller (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53731'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492168,
  'entity_type': 'vote',
  'label': 'Claudia Moll - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492168',
  'mandate': {'id': 53793,
   'entity_type': 'candidacy_mandate',
   'label': 'Claudia Moll (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53793'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492167,
  'entity_type': 'vote',
  'label': 'Susanne Mittag - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492167',
  'mandate': {'id': 53733,
   'entity_type': 'candidacy_mandate',
   'label': 'Susanne Mittag (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53733'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492166,
  'entity_type': 'vote',
  'label': 'Matthias Mieves - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492166',
  'mandate': {'id': 53910,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Mieves (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53910'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492165,
  'entity_type': 'vote',
  'label': 'Matthias Miersch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492165',
  'mandate': {'id': 53752,
   'entity_type': 'candidacy_mandate',
   'label': 'Matthias Miersch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53752'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492164,
  'entity_type': 'vote',
  'label': 'Kathrin Michel - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492164',
  'mandate': {'id': 53524,
   'entity_type': 'candidacy_mandate',
   'label': 'Kathrin Michel (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53524'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492163,
  'entity_type': 'vote',
  'label': 'Robin Mesarosch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492163',
  'mandate': {'id': 53679,
   'entity_type': 'candidacy_mandate',
   'label': 'Robin Mesarosch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53679'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492162,
  'entity_type': 'vote',
  'label': 'Takis Mehmet Ali - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492162',
  'mandate': {'id': 53684,
   'entity_type': 'candidacy_mandate',
   'label': 'Takis Mehmet Ali (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53684'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492161,
  'entity_type': 'vote',
  'label': 'Andreas Mehltretter - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492161',
  'mandate': {'id': 53606,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Mehltretter (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53606'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492160,
  'entity_type': 'vote',
  'label': 'Katja Mast - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492160',
  'mandate': {'id': 53668,
   'entity_type': 'candidacy_mandate',
   'label': 'Katja Mast (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53668'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492159,
  'entity_type': 'vote',
  'label': 'Franziska Mascheck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492159',
  'mandate': {'id': 54112,
   'entity_type': 'candidacy_mandate',
   'label': 'Franziska Mascheck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54112'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492158,
  'entity_type': 'vote',
  'label': 'Parsa Marvi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492158',
  'mandate': {'id': 53675,
   'entity_type': 'candidacy_mandate',
   'label': 'Parsa Marvi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53675'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492157,
  'entity_type': 'vote',
  'label': 'Dorothee Martin - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492157',
  'mandate': {'id': 54058,
   'entity_type': 'candidacy_mandate',
   'label': 'Dorothee Martin (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54058'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492156,
  'entity_type': 'vote',
  'label': 'Zanda Martens - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492156',
  'mandate': {'id': 54019,
   'entity_type': 'candidacy_mandate',
   'label': 'Zanda Martens (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54019'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492155,
  'entity_type': 'vote',
  'label': 'Kaweh Mansoori - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492155',
  'mandate': {'id': 53542,
   'entity_type': 'candidacy_mandate',
   'label': 'Kaweh Mansoori (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53542'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492154,
  'entity_type': 'vote',
  'label': 'Holger Mann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492154',
  'mandate': {'id': 53523,
   'entity_type': 'candidacy_mandate',
   'label': 'Holger Mann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53523'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492153,
  'entity_type': 'vote',
  'label': 'Erik von Malottki - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492153',
  'mandate': {'id': 54056,
   'entity_type': 'candidacy_mandate',
   'label': 'Erik von Malottki (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54056'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492152,
  'entity_type': 'vote',
  'label': 'Isabel Mackensen-Geis - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492152',
  'mandate': {'id': 53574,
   'entity_type': 'candidacy_mandate',
   'label': 'Isabel Mackensen-Geis (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53574'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492151,
  'entity_type': 'vote',
  'label': 'Tanja Machalet - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492151',
  'mandate': {'id': 53905,
   'entity_type': 'candidacy_mandate',
   'label': 'Tanja Machalet (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53905'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492150,
  'entity_type': 'vote',
  'label': 'Heiko Maas - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492150',
  'mandate': {'id': 53977,
   'entity_type': 'candidacy_mandate',
   'label': 'Heiko Maas (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53977'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492149,
  'entity_type': 'vote',
  'label': 'Bettina Lugk - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492149',
  'mandate': {'id': 54011,
   'entity_type': 'candidacy_mandate',
   'label': 'Bettina Lugk (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54011'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492148,
  'entity_type': 'vote',
  'label': 'Helge Lindh - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492148',
  'mandate': {'id': 53807,
   'entity_type': 'candidacy_mandate',
   'label': 'Helge Lindh (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53807'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492147,
  'entity_type': 'vote',
  'label': 'Esra Limbacher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492147',
  'mandate': {'id': 53979,
   'entity_type': 'candidacy_mandate',
   'label': 'Esra Limbacher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53979'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492146,
  'entity_type': 'vote',
  'label': 'Luiza Licina-Bode - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492146',
  'mandate': {'id': 54022,
   'entity_type': 'candidacy_mandate',
   'label': 'Luiza Licina-Bode (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54022'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492145,
  'entity_type': 'vote',
  'label': 'Kevin Leiser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492145',
  'mandate': {'id': 53682,
   'entity_type': 'candidacy_mandate',
   'label': 'Kevin Leiser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53682'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492144,
  'entity_type': 'vote',
  'label': 'Sylvia Lehmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492144',
  'mandate': {'id': 53767,
   'entity_type': 'candidacy_mandate',
   'label': 'Sylvia Lehmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53767'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492143,
  'entity_type': 'vote',
  'label': 'Karl Lauterbach - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492143',
  'mandate': {'id': 53806,
   'entity_type': 'candidacy_mandate',
   'label': 'Karl Lauterbach (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53806'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492142,
  'entity_type': 'vote',
  'label': 'Andreas Larem - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492142',
  'mandate': {'id': 53888,
   'entity_type': 'candidacy_mandate',
   'label': 'Andreas Larem (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53888'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492141,
  'entity_type': 'vote',
  'label': 'Sarah Lahrkamp - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492141',
  'mandate': {'id': 54017,
   'entity_type': 'candidacy_mandate',
   'label': 'Sarah Lahrkamp (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54017'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492140,
  'entity_type': 'vote',
  'label': 'Kevin Kühnert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492140',
  'mandate': {'id': 53786,
   'entity_type': 'candidacy_mandate',
   'label': 'Kevin Kühnert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53786'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492139,
  'entity_type': 'vote',
  'label': 'Martin Kröber - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492139',
  'mandate': {'id': 53774,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Kröber (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53774'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492138,
  'entity_type': 'vote',
  'label': 'Dunja Kreiser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492138',
  'mandate': {'id': 53754,
   'entity_type': 'candidacy_mandate',
   'label': 'Dunja Kreiser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53754'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492137,
  'entity_type': 'vote',
  'label': 'Anette Kramme - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492137',
  'mandate': {'id': 53595,
   'entity_type': 'candidacy_mandate',
   'label': 'Anette Kramme (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53595'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492136,
  'entity_type': 'vote',
  'label': 'Simona Koß - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492136',
  'mandate': {'id': 53764,
   'entity_type': 'candidacy_mandate',
   'label': 'Simona Koß (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53764'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492135,
  'entity_type': 'vote',
  'label': 'Bärbel Kofler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492135',
  'mandate': {'id': 53593,
   'entity_type': 'candidacy_mandate',
   'label': 'Bärbel Kofler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53593'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492134,
  'entity_type': 'vote',
  'label': 'Tim Klüssendorf - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492134',
  'mandate': {'id': 54053,
   'entity_type': 'candidacy_mandate',
   'label': 'Tim Klüssendorf (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54053'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492133,
  'entity_type': 'vote',
  'label': 'Annika Klose - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492133',
  'mandate': {'id': 54106,
   'entity_type': 'candidacy_mandate',
   'label': 'Annika Klose (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54106'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492132,
  'entity_type': 'vote',
  'label': 'Lars Klingbeil - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492132',
  'mandate': {'id': 53740,
   'entity_type': 'candidacy_mandate',
   'label': 'Lars Klingbeil (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53740'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492131,
  'entity_type': 'vote',
  'label': 'Kristian Klinck - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492131',
  'mandate': {'id': 54127,
   'entity_type': 'candidacy_mandate',
   'label': 'Kristian Klinck (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54127'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492130,
  'entity_type': 'vote',
  'label': 'Helmut Kleebank - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492130',
  'mandate': {'id': 53783,
   'entity_type': 'candidacy_mandate',
   'label': 'Helmut Kleebank (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53783'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492129,
  'entity_type': 'vote',
  'label': 'Cansel Kiziltepe - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492129',
  'mandate': {'id': 53511,
   'entity_type': 'candidacy_mandate',
   'label': 'Cansel Kiziltepe (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53511'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492128,
  'entity_type': 'vote',
  'label': 'Franziska Kersten - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492128',
  'mandate': {'id': 53772,
   'entity_type': 'candidacy_mandate',
   'label': 'Franziska Kersten (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53772'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492127,
  'entity_type': 'vote',
  'label': 'Gabriele Katzmarek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492127',
  'mandate': {'id': 53674,
   'entity_type': 'candidacy_mandate',
   'label': 'Gabriele Katzmarek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53674'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492126,
  'entity_type': 'vote',
  'label': 'Anna Kassautzki - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492126',
  'mandate': {'id': 54055,
   'entity_type': 'candidacy_mandate',
   'label': 'Anna Kassautzki (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54055'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492125,
  'entity_type': 'vote',
  'label': 'Carlos Kasper - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492125',
  'mandate': {'id': 53526,
   'entity_type': 'candidacy_mandate',
   'label': 'Carlos Kasper (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53526'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492124,
  'entity_type': 'vote',
  'label': 'Macit Karaahmetoğlu - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492124',
  'mandate': {'id': 53677,
   'entity_type': 'candidacy_mandate',
   'label': 'Macit Karaahmetoğlu (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53677'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492123,
  'entity_type': 'vote',
  'label': 'Elisabeth Kaiser - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492123',
  'mandate': {'id': 53567,
   'entity_type': 'candidacy_mandate',
   'label': 'Elisabeth Kaiser (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53567'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492122,
  'entity_type': 'vote',
  'label': 'Oliver Kaczmarek - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492122',
  'mandate': {'id': 53847,
   'entity_type': 'candidacy_mandate',
   'label': 'Oliver Kaczmarek (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53847'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492121,
  'entity_type': 'vote',
  'label': 'Josip Juratovic - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492121',
  'mandate': {'id': 53680,
   'entity_type': 'candidacy_mandate',
   'label': 'Josip Juratovic (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53680'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492120,
  'entity_type': 'vote',
  'label': 'Frank Junge - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492120',
  'mandate': {'id': 54054,
   'entity_type': 'candidacy_mandate',
   'label': 'Frank Junge (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54054'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492119,
  'entity_type': 'vote',
  'label': 'Markus Hümpfer - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492119',
  'mandate': {'id': 53612,
   'entity_type': 'candidacy_mandate',
   'label': 'Markus Hümpfer (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53612'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492118,
  'entity_type': 'vote',
  'label': 'Verena Hubertz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492118',
  'mandate': {'id': 53904,
   'entity_type': 'candidacy_mandate',
   'label': 'Verena Hubertz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53904'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492117,
  'entity_type': 'vote',
  'label': 'Jasmina Hostert - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492117',
  'mandate': {'id': 53672,
   'entity_type': 'candidacy_mandate',
   'label': 'Jasmina Hostert (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53672'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492116,
  'entity_type': 'vote',
  'label': 'Thomas Hitschler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492116',
  'mandate': {'id': 53912,
   'entity_type': 'candidacy_mandate',
   'label': 'Thomas Hitschler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53912'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492115,
  'entity_type': 'vote',
  'label': 'Nadine Heselhaus - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492115',
  'mandate': {'id': 54010,
   'entity_type': 'candidacy_mandate',
   'label': 'Nadine Heselhaus (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54010'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492114,
  'entity_type': 'vote',
  'label': 'Anke Hennig - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492114',
  'mandate': {'id': 53452,
   'entity_type': 'candidacy_mandate',
   'label': 'Anke Hennig (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53452'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492113,
  'entity_type': 'vote',
  'label': 'Wolfgang Hellmich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492113',
  'mandate': {'id': 54015,
   'entity_type': 'candidacy_mandate',
   'label': 'Wolfgang Hellmich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54015'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492112,
  'entity_type': 'vote',
  'label': 'Gabriela Heinrich - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492112',
  'mandate': {'id': 53599,
   'entity_type': 'candidacy_mandate',
   'label': 'Gabriela Heinrich (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53599'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492111,
  'entity_type': 'vote',
  'label': 'Frauke Heiligenstadt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492111',
  'mandate': {'id': 53757,
   'entity_type': 'candidacy_mandate',
   'label': 'Frauke Heiligenstadt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53757'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492110,
  'entity_type': 'vote',
  'label': 'Hubertus Heil - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492110',
  'mandate': {'id': 53750,
   'entity_type': 'candidacy_mandate',
   'label': 'Hubertus Heil (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53750'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492109,
  'entity_type': 'vote',
  'label': 'Dirk Heidenblut - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492109',
  'mandate': {'id': 53824,
   'entity_type': 'candidacy_mandate',
   'label': 'Dirk Heidenblut (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53824'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492108,
  'entity_type': 'vote',
  'label': 'Sebastian Hartmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492108',
  'mandate': {'id': 54005,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Hartmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54005'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492107,
  'entity_type': 'vote',
  'label': 'Metin Hakverdi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492107',
  'mandate': {'id': 54059,
   'entity_type': 'candidacy_mandate',
   'label': 'Metin Hakverdi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54059'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492106,
  'entity_type': 'vote',
  'label': 'Rita Hagl-Kehl - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492106',
  'mandate': {'id': 53597,
   'entity_type': 'candidacy_mandate',
   'label': 'Rita Hagl-Kehl (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53597'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492105,
  'entity_type': 'vote',
  'label': 'Bettina Hagedorn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492105',
  'mandate': {'id': 54128,
   'entity_type': 'candidacy_mandate',
   'label': 'Bettina Hagedorn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54128'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492104,
  'entity_type': 'vote',
  'label': 'Uli Grötsch - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492104',
  'mandate': {'id': 53592,
   'entity_type': 'candidacy_mandate',
   'label': 'Uli Grötsch (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53592'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492103,
  'entity_type': 'vote',
  'label': 'Kerstin Griese - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492103',
  'mandate': {'id': 54006,
   'entity_type': 'candidacy_mandate',
   'label': 'Kerstin Griese (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54006'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492102,
  'entity_type': 'vote',
  'label': 'Timon Gremmels - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492102',
  'mandate': {'id': 53871,
   'entity_type': 'candidacy_mandate',
   'label': 'Timon Gremmels (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53871'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492101,
  'entity_type': 'vote',
  'label': 'Angelika Glöckner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492101',
  'mandate': {'id': 53911,
   'entity_type': 'candidacy_mandate',
   'label': 'Angelika Glöckner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53911'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492100,
  'entity_type': 'vote',
  'label': 'Martin Gerster - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492100',
  'mandate': {'id': 53671,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Gerster (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53671'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492099,
  'entity_type': 'vote',
  'label': 'Michael Gerdes - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492099',
  'mandate': {'id': 53830,
   'entity_type': 'candidacy_mandate',
   'label': 'Michael Gerdes (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53830'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492098,
  'entity_type': 'vote',
  'label': 'Manuel Gava - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492098',
  'mandate': {'id': 53744,
   'entity_type': 'candidacy_mandate',
   'label': 'Manuel Gava (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53744'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492097,
  'entity_type': 'vote',
  'label': 'Fabian Funke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492097',
  'mandate': {'id': 53528,
   'entity_type': 'candidacy_mandate',
   'label': 'Fabian Funke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53528'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492096,
  'entity_type': 'vote',
  'label': 'Edgar Franke - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492096',
  'mandate': {'id': 53873,
   'entity_type': 'candidacy_mandate',
   'label': 'Edgar Franke (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53873'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492095,
  'entity_type': 'vote',
  'label': 'Sebastian Fiedler - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492095',
  'mandate': {'id': 53823,
   'entity_type': 'candidacy_mandate',
   'label': 'Sebastian Fiedler (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53823'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492094,
  'entity_type': 'vote',
  'label': 'Johannes Fechner - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492094',
  'mandate': {'id': 53669,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Fechner (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53669'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492093,
  'entity_type': 'vote',
  'label': 'Ariane Fäscher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492093',
  'mandate': {'id': 53763,
   'entity_type': 'candidacy_mandate',
   'label': 'Ariane Fäscher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53763'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492092,
  'entity_type': 'vote',
  'label': 'Saskia Esken - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492092',
  'mandate': {'id': 53664,
   'entity_type': 'candidacy_mandate',
   'label': 'Saskia Esken (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53664'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492091,
  'entity_type': 'vote',
  'label': 'Wiebke Esdar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492091',
  'mandate': {'id': 53837,
   'entity_type': 'candidacy_mandate',
   'label': 'Wiebke Esdar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53837'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492090,
  'entity_type': 'vote',
  'label': 'Heike Engelhardt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492090',
  'mandate': {'id': 53683,
   'entity_type': 'candidacy_mandate',
   'label': 'Heike Engelhardt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53683'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492089,
  'entity_type': 'vote',
  'label': 'Sonja Eichwede - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492089',
  'mandate': {'id': 53765,
   'entity_type': 'candidacy_mandate',
   'label': 'Sonja Eichwede (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53765'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': 'maternity_protection',
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492088,
  'entity_type': 'vote',
  'label': 'Axel Echeverria - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492088',
  'mandate': {'id': 53842,
   'entity_type': 'candidacy_mandate',
   'label': 'Axel Echeverria (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53842'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'no_show',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492087,
  'entity_type': 'vote',
  'label': 'Falko Droßmann - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492087',
  'mandate': {'id': 53727,
   'entity_type': 'candidacy_mandate',
   'label': 'Falko Droßmann (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53727'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492086,
  'entity_type': 'vote',
  'label': 'Felix Döring - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492086',
  'mandate': {'id': 53876,
   'entity_type': 'candidacy_mandate',
   'label': 'Felix Döring (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53876'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492085,
  'entity_type': 'vote',
  'label': 'Sabine Dittmar - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492085',
  'mandate': {'id': 53605,
   'entity_type': 'candidacy_mandate',
   'label': 'Sabine Dittmar (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53605'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492084,
  'entity_type': 'vote',
  'label': 'Esther Dilcher - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492084',
  'mandate': {'id': 53870,
   'entity_type': 'candidacy_mandate',
   'label': 'Esther Dilcher (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53870'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492083,
  'entity_type': 'vote',
  'label': 'Jan Dieren - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492083',
  'mandate': {'id': 53819,
   'entity_type': 'candidacy_mandate',
   'label': 'Jan Dieren (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53819'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492082,
  'entity_type': 'vote',
  'label': 'Martin Diedenhofen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492082',
  'mandate': {'id': 53575,
   'entity_type': 'candidacy_mandate',
   'label': 'Martin Diedenhofen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53575'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492081,
  'entity_type': 'vote',
  'label': 'Karamba Diaby - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492081',
  'mandate': {'id': 53777,
   'entity_type': 'candidacy_mandate',
   'label': 'Karamba Diaby (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53777'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492080,
  'entity_type': 'vote',
  'label': 'Hakan Demir - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492080',
  'mandate': {'id': 53787,
   'entity_type': 'candidacy_mandate',
   'label': 'Hakan Demir (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53787'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492079,
  'entity_type': 'vote',
  'label': 'Daniela De Ridder - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492079',
  'mandate': {'id': 56401,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniela De Ridder (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/56401'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492078,
  'entity_type': 'vote',
  'label': 'Bernhard Daldrup - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492078',
  'mandate': {'id': 54009,
   'entity_type': 'candidacy_mandate',
   'label': 'Bernhard Daldrup (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54009'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492077,
  'entity_type': 'vote',
  'label': 'Jürgen Coße - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492077',
  'mandate': {'id': 54020,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Coße (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54020'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492076,
  'entity_type': 'vote',
  'label': 'Lars Castellucci - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492076',
  'mandate': {'id': 53673,
   'entity_type': 'candidacy_mandate',
   'label': 'Lars Castellucci (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53673'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492075,
  'entity_type': 'vote',
  'label': 'Isabel Cademartori - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492075',
  'mandate': {'id': 53955,
   'entity_type': 'candidacy_mandate',
   'label': 'Isabel Cademartori (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53955'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492074,
  'entity_type': 'vote',
  'label': 'Katrin Budde - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492074',
  'mandate': {'id': 53505,
   'entity_type': 'candidacy_mandate',
   'label': 'Katrin Budde (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53505'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492073,
  'entity_type': 'vote',
  'label': 'Leni Breymaier - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492073',
  'mandate': {'id': 53670,
   'entity_type': 'candidacy_mandate',
   'label': 'Leni Breymaier (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53670'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492072,
  'entity_type': 'vote',
  'label': 'Jakob Blankenburg - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492072',
  'mandate': {'id': 53742,
   'entity_type': 'candidacy_mandate',
   'label': 'Jakob Blankenburg (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53742'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492071,
  'entity_type': 'vote',
  'label': 'Bengt Bergt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492071',
  'mandate': {'id': 54052,
   'entity_type': 'candidacy_mandate',
   'label': 'Bengt Bergt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54052'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492070,
  'entity_type': 'vote',
  'label': 'Jürgen Berghahn - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492070',
  'mandate': {'id': 53840,
   'entity_type': 'candidacy_mandate',
   'label': 'Jürgen Berghahn (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53840'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492069,
  'entity_type': 'vote',
  'label': 'Holger Becker - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492069',
  'mandate': {'id': 53893,
   'entity_type': 'candidacy_mandate',
   'label': 'Holger Becker (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53893'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492068,
  'entity_type': 'vote',
  'label': 'Bärbel Bas - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492068',
  'mandate': {'id': 53820,
   'entity_type': 'candidacy_mandate',
   'label': 'Bärbel Bas (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53820'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492067,
  'entity_type': 'vote',
  'label': 'Alexander Bartz - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492067',
  'mandate': {'id': 57240,
   'entity_type': 'candidacy_mandate',
   'label': 'Alexander Bartz (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/57240'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492066,
  'entity_type': 'vote',
  'label': 'Sören Bartol - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492066',
  'mandate': {'id': 53874,
   'entity_type': 'candidacy_mandate',
   'label': 'Sören Bartol (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53874'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492065,
  'entity_type': 'vote',
  'label': 'Nezahat Baradari - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492065',
  'mandate': {'id': 54018,
   'entity_type': 'candidacy_mandate',
   'label': 'Nezahat Baradari (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54018'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492064,
  'entity_type': 'vote',
  'label': 'Daniel Baldy - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492064',
  'mandate': {'id': 53906,
   'entity_type': 'candidacy_mandate',
   'label': 'Daniel Baldy (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53906'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492063,
  'entity_type': 'vote',
  'label': 'Ulrike Bahr - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492063',
  'mandate': {'id': 53607,
   'entity_type': 'candidacy_mandate',
   'label': 'Ulrike Bahr (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53607'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492062,
  'entity_type': 'vote',
  'label': 'Heike Baehrens - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492062',
  'mandate': {'id': 53676,
   'entity_type': 'candidacy_mandate',
   'label': 'Heike Baehrens (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53676'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492061,
  'entity_type': 'vote',
  'label': 'Johannes Arlt - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492061',
  'mandate': {'id': 53726,
   'entity_type': 'candidacy_mandate',
   'label': 'Johannes Arlt (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53726'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492060,
  'entity_type': 'vote',
  'label': 'Niels Annen - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492060',
  'mandate': {'id': 53992,
   'entity_type': 'candidacy_mandate',
   'label': 'Niels Annen (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53992'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492059,
  'entity_type': 'vote',
  'label': 'Dagmar Andres - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492059',
  'mandate': {'id': 54013,
   'entity_type': 'candidacy_mandate',
   'label': 'Dagmar Andres (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/54013'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492058,
  'entity_type': 'vote',
  'label': 'Reem Alabali-Radovan - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492058',
  'mandate': {'id': 53724,
   'entity_type': 'candidacy_mandate',
   'label': 'Reem Alabali-Radovan (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53724'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492057,
  'entity_type': 'vote',
  'label': 'Adis Ahmetovic - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492057',
  'mandate': {'id': 53746,
   'entity_type': 'candidacy_mandate',
   'label': 'Adis Ahmetovic (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53746'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}},
 {'id': 492056,
  'entity_type': 'vote',
  'label': 'Sanae Abdi - Chancen-Aufenthaltsrecht',
  'api_url': 'https://www.abgeordnetenwatch.de/api/v2/votes/492056',
  'mandate': {'id': 53798,
   'entity_type': 'candidacy_mandate',
   'label': 'Sanae Abdi (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/candidacies-mandates/53798'},
  'poll': {'id': 4876,
   'entity_type': 'node',
   'label': 'Chancen-Aufenthaltsrecht',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/polls/4876',
   'abgeordnetenwatch_url': 'https://www.abgeordnetenwatch.de/bundestag/20/abstimmungen/chancen-aufenthaltsrecht'},
  'vote': 'yes',
  'reason_no_show': None,
  'reason_no_show_other': None,
  'fraction': {'id': 319,
   'entity_type': 'fraction',
   'label': 'SPD (Bundestag 2021 - 2025)',
   'api_url': 'https://www.abgeordnetenwatch.de/api/v2/fractions/319'}}]
len(data)
736

Daten in DataFrame umwandeln und bearbeiten#

import pandas as pd
df = pd.DataFrame(data)
df
id entity_type label api_url mandate poll vote reason_no_show reason_no_show_other fraction
0 492791 vote Uwe Witt - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54095, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no_show None None {'id': 325, 'entity_type': 'fraction', 'label'...
1 492790 vote Stefan Seidler - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54098, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... abstain None None {'id': 325, 'entity_type': 'fraction', 'label'...
2 492789 vote Johannes Huber - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53620, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None {'id': 325, 'entity_type': 'fraction', 'label'...
3 492788 vote Matthias Helferich - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53406, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None {'id': 325, 'entity_type': 'fraction', 'label'...
4 492787 vote Robert Farle - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53779, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None {'id': 325, 'entity_type': 'fraction', 'label'...
... ... ... ... ... ... ... ... ... ... ...
731 492060 vote Niels Annen - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53992, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None {'id': 319, 'entity_type': 'fraction', 'label'...
732 492059 vote Dagmar Andres - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54013, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None {'id': 319, 'entity_type': 'fraction', 'label'...
733 492058 vote Reem Alabali-Radovan - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53724, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None {'id': 319, 'entity_type': 'fraction', 'label'...
734 492057 vote Adis Ahmetovic - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53746, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None {'id': 319, 'entity_type': 'fraction', 'label'...
735 492056 vote Sanae Abdi - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53798, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None {'id': 319, 'entity_type': 'fraction', 'label'...

736 rows × 10 columns

def extract_name(label):
    return label.split('-')[0].strip()
df['name'] = df['label'].apply(extract_name)
def extract_fraction(fraction_dict):
    label = fraction_dict['label']
    return label.split('(')[0].strip()
extract_fraction(data[0]['fraction'])
'fraktionslos'
df['fraction'] = df['fraction'].apply(extract_fraction)
df
id entity_type label api_url mandate poll vote reason_no_show reason_no_show_other fraction name
0 492791 vote Uwe Witt - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54095, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no_show None None fraktionslos Uwe Witt
1 492790 vote Stefan Seidler - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54098, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... abstain None None fraktionslos Stefan Seidler
2 492789 vote Johannes Huber - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53620, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None fraktionslos Johannes Huber
3 492788 vote Matthias Helferich - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53406, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None fraktionslos Matthias Helferich
4 492787 vote Robert Farle - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53779, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... no None None fraktionslos Robert Farle
... ... ... ... ... ... ... ... ... ... ... ...
731 492060 vote Niels Annen - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53992, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None SPD Niels Annen
732 492059 vote Dagmar Andres - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 54013, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None SPD Dagmar Andres
733 492058 vote Reem Alabali-Radovan - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53724, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None SPD Reem Alabali
734 492057 vote Adis Ahmetovic - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53746, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None SPD Adis Ahmetovic
735 492056 vote Sanae Abdi - Chancen-Aufenthaltsrecht https://www.abgeordnetenwatch.de/api/v2/votes/... {'id': 53798, 'entity_type': 'candidacy_mandat... {'id': 4876, 'entity_type': 'node', 'label': '... yes None None SPD Sanae Abdi

736 rows × 11 columns

Abstimmungsverhalten nach Partei#

df = df[['name', 'fraction', 'vote', 'reason_no_show',]]
df.groupby('fraction')['vote'].value_counts()
fraction               vote   
AfD                    no          66
                       no_show     12
BÜNDNIS 90/DIE GRÜNEN  yes        104
                       no_show     14
CDU/CSU                no         157
                       abstain     20
                       no_show     20
DIE LINKE.             abstain     33
                       no_show      6
FDP                    yes         84
                       no_show      5
                       abstain      3
SPD                    yes        183
                       no_show     23
fraktionslos           no           3
                       no_show      2
                       abstain      1
Name: count, dtype: int64

Daten speichern#

df.to_csv('abstimmung.csv')