{
  "lexichat_export_version": 2,
  "exported_at": "2026-07-18T17:01:31.805Z",
  "profile": {
    "id": "6tus6t9hrym",
    "name": "Parliament",
    "systemPrompt": "You are a UK Parliament research analyst. You help the user find, verify, and\nsynthesise factual information about Parliament — members, bills, votes, questions,\ndebates, committees, and procedure — using the connected UK Parliament APIs. Your\naudience expects the rigour of a House of Commons Library briefing: accurate,\nsourced, and strictly impartial.\n\nGROUNDING — this is your first duty:\n- Never state a parliamentary fact (a vote, a date, a member's seat or party, the\n  stage of a bill, who said what) from memory or training. Parliamentary data changes\n  constantly and your training is stale. Get every such fact from a tool call in this\n  conversation.\n- If you cannot verify something with the tools, say so plainly rather than guessing.\n  Distinguish clearly between what the data shows and any interpretation you add.\n- When an API returns no result, report \"not found in the API\" — do NOT supply a remembered vote,\n  date, seat, or record to fill the gap, even if you are confident you know it. A confident memory is\n  still a guess.\n\nTHE PARLIAMENT APIs are ID-driven. Names must be resolved to numeric IDs before most\nqueries work:\n- To research a person, first look them up (Members API) to get their member ID,\n  party, House, and constituency, then use that ID for their votes, questions,\n  interests, and contributions.\n- Do the same for bills, committees, and divisions — resolve the name to its ID first,\n  then query by ID.\n- Capabilities by API: Members (people, parties, constituencies, contact, register of\n  interests); Bills (legislation and its stages); Commons Votes and Lords Votes\n  (division results and how each member voted); Oral and Written Questions (PQs and\n  answers); Hansard (what was actually said in debate, by whom, when); Committees\n  (membership, inquiries, evidence); Early Day Motions (motions and signatories);\n  Erskine May (procedure and precedent); Treaties and Statutory Instruments; What's On\n  (current business). Read the available tool descriptions to pick the right one.\n\nMETHOD:\n- Plan briefly, then resolve entities to IDs, then query, then cross-reference across\n  APIs before answering. Real analysis usually needs several calls.\n- APIs differ in the filters they support. If an endpoint can't filter the way you need\n  (e.g. questions by a specific asking member), resolve the ID and use an endpoint that\n  does, or fall back to Hansard search or a web search — and tell the user which route\n  you took.\n- Results are paginated; if a list is truncated, say so and offer to fetch more rather\n  than implying it's complete.\n- For anything time-sensitive (\"current\", \"latest\", \"this session\", \"this week\"), call\n  the date/time tool first so your filters and language are anchored to today.\n- Always note the House (Commons vs Lords) — never conflate them.\n\nOUTPUT:\n- Lead with the direct answer, then the supporting detail.\n- Cite sources: include the member/bill/division IDs you used and link the canonical\n  parliament.uk page (e.g. members.parliament.uk/member/{id}, bills.parliament.uk,\n  votes.parliament.uk, hansard.parliament.uk) so every claim is checkable.\n- Be neutral and non-partisan. Report positions and records; do not editorialise or\n  characterise motives.\n- State your confidence and any gaps: what the data covers, what it doesn't, and where\n  you had to fall back to a secondary source.\n\nCITATIONS — ALWAYS END WITH A SOURCES LIST:\nEvery response must finish with a clearly headed \"## Sources\" section that gathers ALL citations in ONE place at the end. List every source you used, one line each, with its ID and canonical parliament.uk link and the data date (e.g. \"Commons Division 123 — votes.parliament.uk/division/123 — 12 Jun 2026\"). This applies even when you also cite inline, and even for short answers. Because these queries pull a lot of data across several APIs, be thorough: if a fact appears in your answer, its source appears in this list. Never present findings without it.",
    "model": "gemma4:latest",
    "enabledTools": {
      "read_file": true,
      "list_files": true,
      "web_search": true,
      "delete_file": false,
      "run_python": true
    },
    "enabledMcpServerIds": [],
    "enabledOpenapiSpecIds": [
      "21eb45f8-21eb-45f8-b45f-21eb7b5d5f2568",
      "3770f670-3770-4670-8f67-37714db6d3f250",
      "2236e558-2236-4558-ae55-22371b346b0988",
      "0e9c0168-0e9c-4168-8016-e9c18679636b8",
      "0f3324d0-0f33-44d0-b24d-f333cbd82f370",
      "0b455870-0b45-4870-9587-b456a2e2a3850"
    ],
    "enabledSparqlEndpointIds": [],
    "maxTools": 100,
    "allowedDirs": [],
    "chatParams": {
      "style": "precise",
      "responseLength": "auto",
      "contextSize": "short"
    }
  },
  "toolRegistry": {
    "openapiSpecs": [
      {
        "id": "21eb45f8-21eb-45f8-b45f-21eb7b5d5f2568",
        "title": "Members API",
        "base_url": "https://members-api.parliament.uk",
        "spec_json": "{\n\"openapi\": \"3.0.4\",\n\"info\": {\n\"title\": \"Members API\",\n\"description\": \"An API which retrieves Members data.\",\n\"contact\": {\n\"name\": \"UK Parliament\",\n\"url\": \"https://www.parliament.uk\",\n\"email\": \"softwareengineering@parliament.uk\"\n},\n\"version\": \"v1\"\n},\n\"paths\": {\n\"/api/Location/Browse/{locationType}/{locationName}\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a list of locations, both parent and child\",\n\"parameters\": [\n{\n\"name\": \"locationType\",\n\"in\": \"path\",\n\"description\": \"Location by type of location\",\n\"required\": true,\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/LocationType\"\n}\n]\n}\n},\n{\n\"name\": \"locationName\",\n\"in\": \"path\",\n\"description\": \"Location by name specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LocationItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LocationItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LocationItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/Search\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a list of constituencies\",\n\"parameters\": [\n{\n\"name\": \"searchText\",\n\"in\": \"query\",\n\"description\": \"Constituencies containing serach term in their name\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20. Maximum is 20\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a constituency by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Constituency by ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/Synopsis\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a synopsis by constituency ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Synopsis by constituency ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/Representations\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a list of representations by constituency ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Representations by constituency ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyRepresentationListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyRepresentationListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ConstituencyRepresentationListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/Geometry\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns geometry by constituency ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Geometry by constituency ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/ElectionResults\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns a list of election results by constituency ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Elections results by constituency ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/ElectionResult/{electionId}\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns an election result by constituency and election id\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Election result by constituency id\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"electionId\",\n\"in\": \"path\",\n\"description\": \"Election result by election id\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Location/Constituency/{id}/ElectionResult/Latest\": {\n\"get\": {\n\"tags\": [\n\"Location\"\n],\n\"summary\": \"Returns latest election result by constituency id\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Latest election result by constituency id\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/LordsInterests/Register\": {\n\"get\": {\n\"tags\": [\n\"LordsInterests\"\n],\n\"summary\": \"Returns a list of registered interests\",\n\"parameters\": [\n{\n\"name\": \"searchTerm\",\n\"in\": \"query\",\n\"description\": \"Registered interests containing search term\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"description\": \"Page of results to return, default 0. Results per page 20.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"includeDeleted\",\n\"in\": \"query\",\n\"description\": \"Registered interests that have been deleted\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": false\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersInterestsMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersInterestsMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersInterestsMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/LordsInterests/Staff\": {\n\"get\": {\n\"tags\": [\n\"LordsInterests\"\n],\n\"summary\": \"Returns a list of staff\",\n\"parameters\": [\n{\n\"name\": \"searchTerm\",\n\"in\": \"query\",\n\"description\": \"Staff containing search term\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"description\": \"Page of results to return, default 0. Results per page 20.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersStaffMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersStaffMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MembersStaffMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Members/Search\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Returns a list of current members of the Commons or Lords\",\n\"parameters\": [\n{\n\"name\": \"Name\",\n\"in\": \"query\",\n\"description\": \"Members where name contains term specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"Location\",\n\"in\": \"query\",\n\"description\": \"Members where postcode or geographical location matches the term specified\\r\\n    Searches for current constituencies with full postcode, or outward code; and name of constituency\\r\\n    If there are no results based on above, searches for all current and past constituencies in specified area of UK.\\r\\n    To explicitly search by area (ignoring name of constituency); please prefix query with `region:`.\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"PostTitle\",\n\"in\": \"query\",\n\"description\": \"Members which have held the post specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"PartyId\",\n\"in\": \"query\",\n\"description\": \"Members which are currently affiliated with party with party ID\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"Members where their most recent house is the house specified\",\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n},\n{\n\"name\": \"ConstituencyId\",\n\"in\": \"query\",\n\"description\": \"Members which currently hold the constituency with constituency id\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"NameStartsWith\",\n\"in\": \"query\",\n\"description\": \"Members with surname begining with letter(s) specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"Gender\",\n\"in\": \"query\",\n\"description\": \"Members with the gender specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"MembershipStartedSince\",\n\"in\": \"query\",\n\"description\": \"Members who started on or after the date given\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"MembershipEnded.MembershipEndedSince\",\n\"in\": \"query\",\n\"description\": \"Members who left the House on or after the date given\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"MembershipEnded.MembershipEndReasonIds\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"MembershipInDateRange.WasMemberOnOrAfter\",\n\"in\": \"query\",\n\"description\": \"Members who were active on or after the date specified\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"MembershipInDateRange.WasMemberOnOrBefore\",\n\"in\": \"query\",\n\"description\": \"Members who were active on or before the date specified\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"MembershipInDateRange.WasMemberOfHouse\",\n\"in\": \"query\",\n\"description\": \"Members who were active in the house specifid\",\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n},\n{\n\"name\": \"IsEligible\",\n\"in\": \"query\",\n\"description\": \"Members currently Eligible to sit in their House\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"IsCurrentMember\",\n\"in\": \"query\",\n\"description\": \"Members who are current or former members\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"PolicyInterestId\",\n\"in\": \"query\",\n\"description\": \"Members with specified policy interest\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Experience\",\n\"in\": \"query\",\n\"description\": \"Members with specified experience\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20. Maximum is 20\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Members/SearchHistorical\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Returns a list of members of the Commons or Lords\",\n\"parameters\": [\n{\n\"name\": \"name\",\n\"in\": \"query\",\n\"description\": \"Members with names containing the term specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"dateToSearchFor\",\n\"in\": \"query\",\n\"description\": \"Members that were an active member of the Commons or Lords on the date specified\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20. Maximum is 20\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Members/{id}\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"detailsForDate\",\n\"in\": \"query\",\n\"description\": \"Member object will be populated with details from the date specified\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Biography\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return biography of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Biography of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberBiographyItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberBiographyItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberBiographyItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Contact\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of contact details of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Contact details of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ContactInformationListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ContactInformationListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ContactInformationListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/ContributionSummary\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return contribution summary of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Contribution summary of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DebateContributionMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DebateContributionMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DebateContributionMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Edms\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of early day motions of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Early day motions of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/EarlyDayMotionMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/EarlyDayMotionMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/EarlyDayMotionMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Experience\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return experience of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Experience of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/BiographyExperienceListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/BiographyExperienceListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/BiographyExperienceListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Focus\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of areas of focus of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Areas of focus of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberFocusListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberFocusListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/MemberFocusListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/History\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return members by ID with list of their historical names, parties and memberships\",\n\"parameters\": [\n{\n\"name\": \"ids\",\n\"in\": \"query\",\n\"description\": \"List of MemberIds to find\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberHistoryItem\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberHistoryItem\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberHistoryItem\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/LatestElectionResult\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return latest election result of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Latest election result of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ElectionResultItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Portrait\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return portrait of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Portrait of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"cropType\",\n\"in\": \"query\",\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/PortraitCropEnum\"\n}\n],\n\"default\": 0\n}\n},\n{\n\"name\": \"webVersion\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\"\n},\n\"204\": {\n\"description\": \"No Content\"\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/PortraitUrl\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return portrait url of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Portrait url of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/RegisteredInterests\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of registered interests of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Registered interests of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"house\",\n\"in\": \"query\",\n\"description\": \"Registered interests of Member by House specified\",\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/RegisteredInterestCategoryListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/RegisteredInterestCategoryListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/RegisteredInterestCategoryListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Staff\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of staff of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Staff of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StaffListItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StaffListItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StaffListItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Synopsis\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return synopsis of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Synopsis of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Thumbnail\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return thumbnail of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Thumbnail of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\"\n},\n\"204\": {\n\"description\": \"No Content\"\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/ThumbnailUrl\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return thumbnail url of member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Thumbnail url of Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StringItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/Voting\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of votes by member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Votes by Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"house\",\n\"in\": \"query\",\n\"required\": true,\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/VoteMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/VoteMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/VoteMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Members/{id}/WrittenQuestions\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return list of written questions by member by ID\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Written questions by Member by ID specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"page\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/WrittenQuestionMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/WrittenQuestionMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/WrittenQuestionMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Parties/StateOfTheParties/{house}/{forDate}\": {\n\"get\": {\n\"tags\": [\n\"Parties\"\n],\n\"summary\": \"Returns current state of parties\",\n\"parameters\": [\n{\n\"name\": \"house\",\n\"in\": \"path\",\n\"description\": \"State of parties in Commons or Lords.\",\n\"required\": true,\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n},\n{\n\"name\": \"forDate\",\n\"in\": \"path\",\n\"description\": \"State of parties for the date specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartySeatCountMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartySeatCountMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartySeatCountMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Parties/LordsByType/{forDate}\": {\n\"get\": {\n\"tags\": [\n\"Parties\"\n],\n\"summary\": \"Returns the composition of the House of Lords by peerage type.\",\n\"parameters\": [\n{\n\"name\": \"forDate\",\n\"in\": \"path\",\n\"description\": \"Composition of the Lords for date specified.\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LordsByTypeMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LordsByTypeMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/LordsByTypeMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Parties/GetActive/{house}\": {\n\"get\": {\n\"tags\": [\n\"Parties\"\n],\n\"summary\": \"Returns a list of current parties with at least one active member.\",\n\"parameters\": [\n{\n\"name\": \"house\",\n\"in\": \"path\",\n\"description\": \"Current parties by house\",\n\"required\": true,\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartyMembersServiceSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartyMembersServiceSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PartyMembersServiceSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Posts/GovernmentPosts\": {\n\"get\": {\n\"tags\": [\n\"Posts\"\n],\n\"summary\": \"Returns a list of government posts.\",\n\"parameters\": [\n{\n\"name\": \"departmentId\",\n\"in\": \"query\",\n\"description\": \"Government posts by department ID\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Posts/OppositionPosts\": {\n\"get\": {\n\"tags\": [\n\"Posts\"\n],\n\"summary\": \"Returns a list of opposition posts.\",\n\"parameters\": [\n{\n\"name\": \"departmentId\",\n\"in\": \"query\",\n\"description\": \"Opposition posts by department ID\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Posts/Spokespersons\": {\n\"get\": {\n\"tags\": [\n\"Posts\"\n],\n\"summary\": \"Returns a list of spokespersons.\",\n\"parameters\": [\n{\n\"name\": \"partyId\",\n\"in\": \"query\",\n\"description\": \"Spokespersons by party ID\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostItem\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Posts/Departments/{type}\": {\n\"get\": {\n\"tags\": [\n\"Posts\"\n],\n\"summary\": \"Returns a list of departments.\",\n\"parameters\": [\n{\n\"name\": \"type\",\n\"in\": \"path\",\n\"description\": \"Departments by type\",\n\"required\": true,\n\"schema\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/PostType\"\n}\n]\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Posts/SpeakerAndDeputies/{forDate}\": {\n\"get\": {\n\"tags\": [\n\"Posts\"\n],\n\"summary\": \"Returns a list containing the speaker and deputy speakers.\",\n\"parameters\": [\n{\n\"name\": \"forDate\",\n\"in\": \"path\",\n\"description\": \"Speaker and deputy speakers for date specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n},\n\"/api/Reference/PolicyInterests\": {\n\"get\": {\n\"tags\": [\n\"Reference\"\n],\n\"summary\": \"Returns a list of policy interest.\",\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GenericReferenceData\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GenericReferenceData\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GenericReferenceData\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"/api/Reference/Departments\": {\n\"get\": {\n\"tags\": [\n\"Reference\"\n],\n\"summary\": \"Returns a list of departments.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"nameContains\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"string\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Reference/AnsweringBodies\": {\n\"get\": {\n\"tags\": [\n\"Reference\"\n],\n\"summary\": \"Returns a list of answering bodies.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"nameContains\",\n\"in\": \"query\",\n\"schema\": {\n\"type\": \"string\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/AnsweringBody\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/AnsweringBody\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/AnsweringBody\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\"\n}\n}\n}\n},\n\"/api/Reference/Departments/{id}/Logo\": {\n\"get\": {\n\"tags\": [\n\"Reference\"\n],\n\"summary\": \"Returns department logo.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Logo by department ID\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\"\n},\n\"400\": {\n\"description\": \"Bad Request\"\n},\n\"404\": {\n\"description\": \"Not Found\"\n}\n}\n}\n}\n},\n\"components\": {\n\"schemas\": {\n\"AnsweringBody\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"shortName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"target\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"department\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"BiographyExperience\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"typeId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"organisation\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startMonth\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"startYear\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"endMonth\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"endYear\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"BiographyExperienceListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyExperience\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"BiographyItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"house\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n],\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"additionalInfo\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"additionalInfoLink\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Constituency\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"currentRepresentation\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/ConstituencyRepresentation\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ConstituencyItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Constituency\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ConstituencyMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/ConstituencyItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ConstituencyRepresentation\": {\n\"type\": \"object\",\n\"properties\": {\n\"member\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n],\n\"nullable\": true\n},\n\"representation\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/HouseMembership\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ConstituencyRepresentationListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/ConstituencyRepresentation\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ContactInformation\": {\n\"type\": \"object\",\n\"properties\": {\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"typeDescription\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"typeId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"isPreferred\": {\n\"type\": \"boolean\"\n},\n\"isWebAddress\": {\n\"type\": \"boolean\"\n},\n\"notes\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"line1\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"line2\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"line3\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"line4\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"line5\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"postcode\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"phone\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fax\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"email\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"website\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ContactInformationListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/ContactInformation\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"DebateContribution\": {\n\"type\": \"object\",\n\"properties\": {\n\"totalContributions\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"debateTitle\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"debateId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"debateWebsiteId\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"sittingDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"section\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"house\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"firstTimecode\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"speechCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"questionCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"supplementaryQuestionCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"interventionCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"answerCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"pointsOfOrderCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"statementsCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"DebateContributionItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/DebateContribution\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"DebateContributionMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/DebateContributionItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"EarlyDayMotion\": {\n\"type\": \"object\",\n\"properties\": {\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"number\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isPrayer\": {\n\"type\": \"boolean\"\n},\n\"isAmendment\": {\n\"type\": \"boolean\"\n},\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"dateTabled\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"sponsorsCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"EarlyDayMotionItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/EarlyDayMotion\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"EarlyDayMotionMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/EarlyDayMotionItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ElectionCandidate\": {\n\"type\": \"object\",\n\"properties\": {\n\"memberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"party\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n},\n\"resultChange\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"rankOrder\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"votes\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"voteShare\": {\n\"type\": \"number\",\n\"format\": \"double\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ElectionResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"result\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isNotional\": {\n\"type\": \"boolean\"\n},\n\"electorate\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"turnout\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"majority\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"winningParty\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n},\n\"electionTitle\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"electionDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"electionId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"isGeneralElection\": {\n\"type\": \"boolean\"\n},\n\"constituencyName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"candidates\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/ElectionCandidate\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ElectionResultItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/ElectionResult\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ElectionResultListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/ElectionResult\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"GenericReferenceData\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"GovernmentDepartment\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"imageUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"GovernmentOppositionPost\": {\n\"type\": \"object\",\n\"properties\": {\n\"type\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/PostType\"\n}\n],\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"hansardName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"postHolders\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentOppositionPostHolder\"\n},\n\"nullable\": true\n},\n\"governmentDepartments\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GovernmentDepartment\"\n},\n\"nullable\": true\n},\n\"createdWhen\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"order\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"GovernmentOppositionPostHolder\": {\n\"type\": \"object\",\n\"properties\": {\n\"member\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MemberItem\"\n}\n],\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"layingMinisterName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isPaid\": {\n\"type\": \"boolean\"\n}\n},\n\"additionalProperties\": false\n},\n\"GovernmentOppositionPostItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/GovernmentOppositionPost\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"GovernmentType\": {\n\"enum\": [\n0,\n1,\n2,\n3\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"GroupedQuestion\": {\n\"type\": \"object\",\n\"properties\": {\n\"questionUin\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"dateTabled\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n\"additionalProperties\": false\n},\n\"House\": {\n\"enum\": [\n1,\n2\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"HouseMembership\": {\n\"type\": \"object\",\n\"properties\": {\n\"membershipFrom\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"membershipFromId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"house\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n],\n\"nullable\": true\n},\n\"membershipStartDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"membershipEndDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"membershipEndReason\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"membershipEndReasonNotes\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"membershipEndReasonId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"membershipStatus\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/HouseMembershipStatus\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"HouseMembershipStatus\": {\n\"type\": \"object\",\n\"properties\": {\n\"statusIsActive\": {\n\"type\": \"boolean\"\n},\n\"statusDescription\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"statusNotes\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"statusId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"status\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MemberStatus\"\n}\n],\n\"nullable\": true\n},\n\"statusStartDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Link\": {\n\"type\": \"object\",\n\"properties\": {\n\"rel\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"href\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"method\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Location\": {\n\"type\": \"object\",\n\"properties\": {\n\"context\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/LocationContext\"\n}\n],\n\"nullable\": true\n},\n\"parentContext\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/LocationContext\"\n}\n],\n\"nullable\": true\n},\n\"childContexts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/LocationContext\"\n},\n\"nullable\": true\n},\n\"stateOfTheParties\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PartySeatCount\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LocationContext\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"type\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/LocationType\"\n}\n]\n},\n\"typeName\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LocationItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Location\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LocationType\": {\n\"enum\": [\n0,\n1,\n2,\n3\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"LordsByType\": {\n\"type\": \"object\",\n\"properties\": {\n\"life\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"hereditary\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"bishop\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"total\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"party\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LordsByTypeItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/LordsByType\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LordsByTypeMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/LordsByTypeItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MatchedBy\": {\n\"enum\": [\n0,\n1,\n2,\n4,\n8,\n16,\n32,\n64,\n128,\n256,\n512,\n1024,\n2048,\n4096,\n8192\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"Member\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"nameListAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameDisplayAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameFullTitle\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameAddressAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"latestParty\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n},\n\"gender\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"latestHouseMembership\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/HouseMembership\"\n}\n],\n\"nullable\": true\n},\n\"thumbnailUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberBiography\": {\n\"type\": \"object\",\n\"properties\": {\n\"representations\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/RepresentationItem\"\n},\n\"nullable\": true\n},\n\"electionsContested\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"houseMemberships\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"governmentPosts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"oppositionPosts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"otherPosts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"partyAffiliations\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n},\n\"committeeMemberships\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/BiographyItem\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberBiographyItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MemberBiography\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberFocus\": {\n\"type\": \"object\",\n\"properties\": {\n\"category\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"focus\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberFocusListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberFocus\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberHistory\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"thumbnailUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"partyHistory\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberParty\"\n},\n\"nullable\": true\n},\n\"houseMembershipHistory\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/HouseMembership\"\n},\n\"nullable\": true\n},\n\"nameHistory\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberName\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberHistoryItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MemberHistory\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Member\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MemberItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberName\": {\n\"type\": \"object\",\n\"properties\": {\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"nameListAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameDisplayAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameFullTitle\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"nameAddressAs\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberParty\": {\n\"type\": \"object\",\n\"properties\": {\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"party\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MemberStatus\": {\n\"enum\": [\n0,\n1,\n2,\n3\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"MembersInterests\": {\n\"type\": \"object\",\n\"properties\": {\n\"member\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Member\"\n}\n],\n\"nullable\": true\n},\n\"interestCategories\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/RegisteredInterestCategory\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MembersInterestsItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MembersInterests\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MembersInterestsMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MembersInterestsItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MembersStaff\": {\n\"type\": \"object\",\n\"properties\": {\n\"member\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Member\"\n}\n],\n\"nullable\": true\n},\n\"staff\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Staff\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MembersStaffItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MembersStaff\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"MembersStaffMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/MembersStaffItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Party\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"abbreviation\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"backgroundColour\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"foregroundColour\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isLordsMainParty\": {\n\"type\": \"boolean\"\n},\n\"isLordsSpiritualParty\": {\n\"type\": \"boolean\"\n},\n\"governmentType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/GovernmentType\"\n}\n],\n\"nullable\": true\n},\n\"isIndependentParty\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PartyItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PartyMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PartyItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PartySeatCount\": {\n\"type\": \"object\",\n\"properties\": {\n\"male\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"female\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"nonBinary\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"total\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"party\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Party\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PartySeatCountItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/PartySeatCount\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PartySeatCountMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PartySeatCountItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"PortraitCropEnum\": {\n\"enum\": [\n0,\n1,\n2,\n3\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"PostType\": {\n\"enum\": [\n0,\n1,\n2\n],\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"RegisteredInterest\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"interest\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"createdWhen\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"lastAmendedWhen\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"deletedWhen\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"isCorrection\": {\n\"type\": \"boolean\"\n},\n\"childInterests\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/RegisteredInterest\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"RegisteredInterestCategory\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"sortOrder\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"interests\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/RegisteredInterest\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"RegisteredInterestCategoryListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/RegisteredInterestCategory\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"RepresentationItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"house\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n],\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"additionalInfo\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"additionalInfoLink\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"constituencyStart\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"constituencyEnd\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Staff\": {\n\"type\": \"object\",\n\"properties\": {\n\"surname\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"forename\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"details\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"StaffListItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Staff\"\n},\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"StringItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Vote\": {\n\"type\": \"object\",\n\"properties\": {\n\"house\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n},\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"inAffirmativeLobby\": {\n\"type\": \"boolean\"\n},\n\"inNegativeLobby\": {\n\"type\": \"boolean\"\n},\n\"actedAsTeller\": {\n\"type\": \"boolean\"\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"date\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"divisionNumber\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"numberInFavour\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"numberAgainst\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"VoteItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Vote\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"VoteMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/VoteItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"WrittenQuestion\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"askingMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"house\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/House\"\n}\n]\n},\n\"memberHasInterest\": {\n\"type\": \"boolean\"\n},\n\"dateTabled\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"dateForAnswer\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"uin\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"questionText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"answeringBodyId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"isWithdrawn\": {\n\"type\": \"boolean\"\n},\n\"isNamedDay\": {\n\"type\": \"boolean\"\n},\n\"groupedQuestions\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n},\n\"nullable\": true\n},\n\"groupedQuestionsDates\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GroupedQuestion\"\n},\n\"nullable\": true\n},\n\"answerIsHolding\": {\n\"type\": \"boolean\",\n\"nullable\": true\n},\n\"answerIsCorrection\": {\n\"type\": \"boolean\",\n\"nullable\": true\n},\n\"answeringMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"correctingMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"dateAnswered\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"answerText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"attachmentCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"heading\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"answeringMember\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Member\"\n}\n],\n\"nullable\": true\n},\n\"correctingMember\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/Member\"\n}\n],\n\"nullable\": true\n},\n\"answeringBody\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/AnsweringBody\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"WrittenQuestionItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/WrittenQuestion\"\n}\n],\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"WrittenQuestionMembersServiceSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/WrittenQuestionItem\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"resultContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"skip\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n},\n\"resultType\": {\n\"allOf\": [\n{\n\"$ref\": \"#/components/schemas/MatchedBy\"\n}\n],\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n}\n}\n}\n}",
        "auth": {
          "type": "none"
        }
      },
      {
        "id": "3770f670-3770-4670-8f67-37714db6d3f250",
        "title": "House of Commons Oral and Written Questions API",
        "base_url": "http://oralquestionsandmotions-api.parliament.uk",
        "spec_json": "{\n\"swagger\": \"2.0\",\n\"info\": {\n\"version\": \"v1\",\n\"title\": \"House of Commons Oral and Written Questions API\",\n\"description\": \"An API that allows querying all tabled oral and written questions, and motions for the House of Commons.\",\n\"contact\": {\n\"name\": \"UK Parliament\",\n\"url\": \"https://www.parliament.uk/\",\n\"email\": \"softwareengineering@parliament.uk\"\n}\n},\n\"host\": \"oralquestionsandmotions-api.parliament.uk\",\n\"schemes\": [\n\"http\",\n\"https\"\n],\n\"paths\": {\n\"/EarlyDayMotion/{id}\": {\n\"get\": {\n\"tags\": [\n\"Early Day Motions\"\n],\n\"summary\": \"Returns a single Early Day Motion by ID\",\n\"description\": \"Get a single Early Day Motion which has the ID specified.\",\n\"operationId\": \"PublishedEarlyDayMotion_Get\",\n\"consumes\": [],\n\"produces\": [\n\"application/json\",\n\"text/json\"\n],\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Early Day Motion with the ID specified.\",\n\"required\": true,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[List[PublishedWrittenQuestion]]\"\n}\n},\n\"400\": {\n\"description\": \"BadRequest\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[Object]\"\n}\n},\n\"404\": {\n\"description\": \"NotFound\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[Object]\"\n}\n}\n}\n}\n},\n\"/EarlyDayMotions/list\": {\n\"get\": {\n\"tags\": [\n\"Early Day Motions\"\n],\n\"summary\": \"Returns a list of Early Day Motions\",\n\"description\": \"Get a list of Early Day Motions which meet the specified criteria. Only supports Published and Withdrawn status.\",\n\"operationId\": \"PublishedEarlyDayMotion_Get\",\n\"consumes\": [],\n\"produces\": [\n\"application/json\",\n\"text/json\",\n\"application/xml\",\n\"text/xml\"\n],\n\"parameters\": [\n{\n\"name\": \"parameters.edmIds\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions with an ID in the list provided.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.uINWithAmendmentSuffix\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions with an UINWithAmendmentSuffix provided.\",\n\"required\": false,\n\"type\": \"string\"\n},\n{\n\"name\": \"parameters.searchTerm\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where the title includes the search term provided.\",\n\"required\": false,\n\"type\": \"string\"\n},\n{\n\"name\": \"parameters.currentStatusDateStart\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where the current status has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.currentStatusDateEnd\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where the current status has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.isPrayer\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions which are a prayer against a Negative Statutory Instrument.\",\n\"required\": false,\n\"type\": \"boolean\"\n},\n{\n\"name\": \"parameters.memberId\",\n\"in\": \"query\",\n\"description\": \"Return Early Day Motions tabled by Member with ID provided.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.includeSponsoredByMember\",\n\"in\": \"query\",\n\"description\": \"Include Early Day Motions sponsored by Member specified\",\n\"required\": false,\n\"type\": \"boolean\"\n},\n{\n\"name\": \"parameters.tabledStartDate\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where the date tabled is on or after the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.tabledEndDate\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where the date tabled is on or before the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.statuses\",\n\"in\": \"query\",\n\"description\": \"Early Day Motions where current status is in the selected list.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\",\n\"enum\": [\n\"Published\",\n\"Withdrawn\"\n]\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.orderBy\",\n\"in\": \"query\",\n\"description\": \"Order results by date tabled, title or signature count. Default is date tabled.\",\n\"required\": false,\n\"type\": \"string\",\n\"enum\": [\n\"DateTabledAsc\",\n\"DateTabledDesc\",\n\"TitleAsc\",\n\"TitleDesc\",\n\"SignatureCountAsc\",\n\"SignatureCountDesc\"\n]\n},\n{\n\"name\": \"parameters.skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[List[PublishedWrittenQuestion]]\"\n}\n},\n\"400\": {\n\"description\": \"BadRequest\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[Object]\"\n}\n}\n}\n}\n},\n\"/oralquestions/list\": {\n\"get\": {\n\"tags\": [\n\"Oral Questions\"\n],\n\"summary\": \"Returns a list of oral questions\",\n\"description\": \"A list of oral questions meeting the specified criteria.\",\n\"operationId\": \"PublishedOralQuestion_Get\",\n\"consumes\": [],\n\"produces\": [\n\"application/json\",\n\"text/json\",\n\"application/xml\",\n\"text/xml\"\n],\n\"parameters\": [\n{\n\"name\": \"parameters.answeringDateStart\",\n\"in\": \"query\",\n\"description\": \"Oral Questions where the answering date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.answeringDateEnd\",\n\"in\": \"query\",\n\"description\": \"Oral Questions where the answering date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.questionType\",\n\"in\": \"query\",\n\"description\": \"Oral Questions where the question type is the selected type, substantive or topical.\",\n\"required\": false,\n\"type\": \"string\",\n\"enum\": [\n\"Substantive\",\n\"Topical\"\n]\n},\n{\n\"name\": \"parameters.oralQuestionTimeId\",\n\"in\": \"query\",\n\"description\": \"Oral Questions where the question is within the question time with the ID provided\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.statuses\",\n\"in\": \"query\",\n\"description\": \"Oral Questions where current status is in the selected list\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\",\n\"enum\": [\n\"Submitted\",\n\"Carded\",\n\"Unsaved\",\n\"ReadyForShuffle\",\n\"ToBeAsked\",\n\"ShuffleUnsuccessful\",\n\"Withdrawn\",\n\"Unstarred\",\n\"Draft\",\n\"ForReview\",\n\"Unasked\",\n\"Transferred\"\n]\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.askingMemberIds\",\n\"in\": \"query\",\n\"description\": \"The ID of the member asking the question. Lists of member IDs for each house are available <a href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/members/query/house=Commons\\\" target=\\\"_blank\\\">Commons</a> and <a href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/members/query/house=Lords\\\" target=\\\"_blank\\\">Lords</a>.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.uINs\",\n\"in\": \"query\",\n\"description\": \"The UIN for the question - note that UINs reset at the start of each Parliamentary session.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.answeringBodyIds\",\n\"in\": \"query\",\n\"description\": \"Which answering body is to respond. A list of answering bodies can be found <a target=\\\"_blank\\\" href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/referencedata/AnsweringBodies/\\\">here</a>.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[List[PublishedWrittenQuestion]]\"\n}\n},\n\"400\": {\n\"description\": \"BadRequest\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[Object]\"\n}\n}\n}\n}\n},\n\"/oralquestiontimes/list\": {\n\"get\": {\n\"tags\": [\n\"Oral Question Times\"\n],\n\"summary\": \"Returns a list of oral question times\",\n\"description\": \"A list of oral question times meeting the specified criteria.\",\n\"operationId\": \"PublishedOralQuestionTime_Get\",\n\"consumes\": [],\n\"produces\": [\n\"application/json\",\n\"text/json\",\n\"application/xml\",\n\"text/xml\"\n],\n\"parameters\": [\n{\n\"name\": \"parameters.answeringDateStart\",\n\"in\": \"query\",\n\"description\": \"Oral Questions Time where the answering date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.answeringDateEnd\",\n\"in\": \"query\",\n\"description\": \"Oral Questions Time where the answering date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.deadlineDateStart\",\n\"in\": \"query\",\n\"description\": \"Oral Questions Time where the deadline date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.deadlineDateEnd\",\n\"in\": \"query\",\n\"description\": \"Oral Questions Time where the deadline date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"required\": false,\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n{\n\"name\": \"parameters.oralQuestionTimeId\",\n\"in\": \"query\",\n\"description\": \"Identifier of the OQT\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.answeringBodyIds\",\n\"in\": \"query\",\n\"description\": \"Which answering body is to respond. A list of answering bodies can be found <a target=\\\"_blank\\\" href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/referencedata/AnsweringBodies/\\\">here</a>.\",\n\"required\": false,\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"collectionFormat\": \"multi\"\n},\n{\n\"name\": \"parameters.skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n{\n\"name\": \"parameters.take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"required\": false,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[List[PublishedWrittenQuestion]]\"\n}\n},\n\"400\": {\n\"description\": \"BadRequest\",\n\"schema\": {\n\"$ref\": \"#/definitions/ApiResponse[Object]\"\n}\n}\n}\n}\n}\n},\n\"definitions\": {\n\"ApiResponse[PublishedEarlyDayMotionDetails]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"$ref\": \"#/definitions/PublishedEarlyDayMotionDetails\"\n}\n}\n},\n\"PagingInfo\": {\n\"type\": \"object\",\n\"properties\": {\n\"Skip\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Take\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Total\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"GlobalTotal\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"StatusCounts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/StatusCount\"\n}\n},\n\"GlobalStatusCounts\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/StatusCount\"\n}\n}\n}\n},\n\"PublishedEarlyDayMotionDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"Sponsors\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedEarlyDayMotionSponsor\"\n}\n},\n\"Amendments\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedEarlyDayMotionDetails\"\n}\n},\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Status\": {\n\"enum\": [\n\"Published\",\n\"Withdrawn\"\n],\n\"type\": \"string\"\n},\n\"StatusDate\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"MemberId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"PrimarySponsor\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"Title\": {\n\"type\": \"string\"\n},\n\"MotionText\": {\n\"type\": \"string\"\n},\n\"AmendmentToMotionId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"UIN\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AmendmentSuffix\": {\n\"type\": \"string\"\n},\n\"DateTabled\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"PrayingAgainstNegativeStatutoryInstrumentId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"StatutoryInstrumentNumber\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"StatutoryInstrumentYear\": {\n\"type\": \"string\"\n},\n\"StatutoryInstrumentTitle\": {\n\"type\": \"string\"\n},\n\"UINWithAmendmentSuffix\": {\n\"type\": \"string\"\n},\n\"SponsorsCount\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n}\n},\n\"StatusCount\": {\n\"type\": \"object\",\n\"properties\": {\n\"StatusId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Count\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n}\n},\n\"PublishedEarlyDayMotionSponsor\": {\n\"type\": \"object\",\n\"properties\": {\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"MemberId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Member\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"SponsoringOrder\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"CreatedWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"IsWithdrawn\": {\n\"type\": \"boolean\"\n},\n\"WithdrawnDate\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n}\n}\n},\n\"MemberForDate\": {\n\"type\": \"object\",\n\"properties\": {\n\"MnisId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"PimsId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Name\": {\n\"type\": \"string\"\n},\n\"ListAs\": {\n\"type\": \"string\"\n},\n\"Constituency\": {\n\"type\": \"string\"\n},\n\"Status\": {\n\"type\": \"string\"\n},\n\"Party\": {\n\"type\": \"string\"\n},\n\"PartyId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"PartyColour\": {\n\"type\": \"string\"\n},\n\"PhotoUrl\": {\n\"type\": \"string\",\n\"readOnly\": true\n}\n}\n},\n\"ApiResponse[List[PublishedWrittenQuestion]]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedWrittenQuestion\"\n}\n}\n}\n},\n\"PublishedWrittenQuestion\": {\n\"type\": \"object\",\n\"properties\": {\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"QuestionType\": {\n\"enum\": [\n\"NamedDay\",\n\"Ordinary\"\n],\n\"type\": \"string\"\n},\n\"QuestionText\": {\n\"type\": \"string\"\n},\n\"AnsweringBodyId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringBody\": {\n\"type\": \"string\"\n},\n\"UIN\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"DueForAnswer\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"AnsweredWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"TabledWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"AskingMember\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"AnsweringMinister\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"Answer\": {\n\"type\": \"string\"\n},\n\"AnsweringMinisterTitle\": {\n\"type\": \"string\"\n},\n\"AskingMemberId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringMinisterId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n}\n},\n\"ApiResponse[Object]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"type\": \"object\"\n}\n}\n},\n\"PublishedEarlyDayMotionQueryParameters\": {\n\"type\": \"object\",\n\"properties\": {\n\"EdmIds\": {\n\"description\": \"Early Day Motions with an ID in the list provided.\",\n\"type\": \"array\",\n\"items\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n},\n\"UINWithAmendmentSuffix\": {\n\"description\": \"Early Day Motions with an UINWithAmendmentSuffix provided.\",\n\"type\": \"string\"\n},\n\"SearchTerm\": {\n\"description\": \"Early Day Motions where the title includes the search term provided.\",\n\"type\": \"string\"\n},\n\"CurrentStatusDateStart\": {\n\"format\": \"date-time\",\n\"description\": \"Early Day Motions where the current status has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"CurrentStatusDateEnd\": {\n\"format\": \"date-time\",\n\"description\": \"Early Day Motions where the current status has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"IsPrayer\": {\n\"description\": \"Early Day Motions which are a prayer against a Negative Statutory Instrument.\",\n\"type\": \"boolean\"\n},\n\"MemberId\": {\n\"format\": \"int32\",\n\"description\": \"Return Early Day Motions tabled by Member with ID provided.\",\n\"type\": \"integer\"\n},\n\"IncludeSponsoredByMember\": {\n\"description\": \"Include Early Day Motions sponsored by Member specified\",\n\"type\": \"boolean\"\n},\n\"TabledStartDate\": {\n\"format\": \"date-time\",\n\"description\": \"Early Day Motions where the date tabled is on or after the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"TabledEndDate\": {\n\"format\": \"date-time\",\n\"description\": \"Early Day Motions where the date tabled is on or before the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"Statuses\": {\n\"description\": \"Early Day Motions where current status is in the selected list.\",\n\"type\": \"array\",\n\"items\": {\n\"enum\": [\n\"Published\",\n\"Withdrawn\"\n],\n\"type\": \"string\"\n}\n},\n\"OrderBy\": {\n\"description\": \"Order results by date tabled, title or signature count. Default is date tabled.\",\n\"enum\": [\n\"DateTabledAsc\",\n\"DateTabledDesc\",\n\"TitleAsc\",\n\"TitleDesc\",\n\"SignatureCountAsc\",\n\"SignatureCountDesc\"\n],\n\"type\": \"string\"\n},\n\"Skip\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"type\": \"integer\"\n},\n\"Take\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"type\": \"integer\"\n}\n}\n},\n\"ApiResponse[List[PublishedEarlyDayMotion]]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedEarlyDayMotion\"\n}\n}\n}\n},\n\"PublishedEarlyDayMotion\": {\n\"type\": \"object\",\n\"properties\": {\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"Status\": {\n\"enum\": [\n\"Published\",\n\"Withdrawn\"\n],\n\"type\": \"string\"\n},\n\"StatusDate\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"MemberId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"PrimarySponsor\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"Title\": {\n\"type\": \"string\"\n},\n\"MotionText\": {\n\"type\": \"string\"\n},\n\"AmendmentToMotionId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"UIN\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AmendmentSuffix\": {\n\"type\": \"string\"\n},\n\"DateTabled\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"PrayingAgainstNegativeStatutoryInstrumentId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"StatutoryInstrumentNumber\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"StatutoryInstrumentYear\": {\n\"type\": \"string\"\n},\n\"StatutoryInstrumentTitle\": {\n\"type\": \"string\"\n},\n\"UINWithAmendmentSuffix\": {\n\"type\": \"string\"\n},\n\"SponsorsCount\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n}\n},\n\"PublishedOralQuestionQueryParameters\": {\n\"type\": \"object\",\n\"properties\": {\n\"AnsweringDateStart\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions where the answering date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"AnsweringDateEnd\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions where the answering date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"QuestionType\": {\n\"description\": \"Oral Questions where the question type is the selected type, substantive or topical.\",\n\"enum\": [\n\"Substantive\",\n\"Topical\"\n],\n\"type\": \"string\"\n},\n\"OralQuestionTimeId\": {\n\"format\": \"int32\",\n\"description\": \"Oral Questions where the question is within the question time with the ID provided\",\n\"type\": \"integer\"\n},\n\"Statuses\": {\n\"description\": \"Oral Questions where current status is in the selected list\",\n\"type\": \"array\",\n\"items\": {\n\"enum\": [\n\"Submitted\",\n\"Carded\",\n\"Unsaved\",\n\"ReadyForShuffle\",\n\"ToBeAsked\",\n\"ShuffleUnsuccessful\",\n\"Withdrawn\",\n\"Unstarred\",\n\"Draft\",\n\"ForReview\",\n\"Unasked\",\n\"Transferred\"\n],\n\"type\": \"string\"\n}\n},\n\"AskingMemberIds\": {\n\"description\": \"The ID of the member asking the question. Lists of member IDs for each house are available <a href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/members/query/house=Commons\\\" target=\\\"_blank\\\">Commons</a> and <a href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/members/query/house=Lords\\\" target=\\\"_blank\\\">Lords</a>.\",\n\"type\": \"array\",\n\"items\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n},\n\"UINs\": {\n\"description\": \"The UIN for the question - note that UINs reset at the start of each Parliamentary session.\",\n\"type\": \"array\",\n\"items\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n},\n\"AnsweringBodyIds\": {\n\"description\": \"Which answering body is to respond. A list of answering bodies can be found <a target=\\\"_blank\\\" href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/referencedata/AnsweringBodies/\\\">here</a>.\",\n\"type\": \"array\",\n\"items\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n},\n\"Skip\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"type\": \"integer\"\n},\n\"Take\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"type\": \"integer\"\n}\n}\n},\n\"ApiResponse[List[PublishedOralQuestion]]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedOralQuestion\"\n}\n}\n}\n},\n\"PublishedOralQuestion\": {\n\"type\": \"object\",\n\"properties\": {\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"QuestionType\": {\n\"enum\": [\n\"Substantive\",\n\"Topical\"\n],\n\"type\": \"string\"\n},\n\"QuestionText\": {\n\"type\": \"string\"\n},\n\"Status\": {\n\"enum\": [\n\"Submitted\",\n\"Carded\",\n\"Unsaved\",\n\"ReadyForShuffle\",\n\"ToBeAsked\",\n\"ShuffleUnsuccessful\",\n\"Withdrawn\",\n\"Unstarred\",\n\"Draft\",\n\"ForReview\",\n\"Unasked\",\n\"Transferred\"\n],\n\"type\": \"string\"\n},\n\"Number\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"TabledWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"RemovedFromToBeAskedWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"DeclarableInterestDetail\": {\n\"type\": \"string\"\n},\n\"HansardLink\": {\n\"type\": \"string\"\n},\n\"UIN\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"AnsweringBodyId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringBody\": {\n\"type\": \"string\"\n},\n\"AnsweringMinisterTitle\": {\n\"type\": \"string\"\n},\n\"AskingMember\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"AnsweringMinister\": {\n\"$ref\": \"#/definitions/MemberForDate\"\n},\n\"AskingMemberId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringMinisterId\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n}\n},\n\"PublishedOralQuestionTimeQueryParameters\": {\n\"type\": \"object\",\n\"properties\": {\n\"AnsweringDateStart\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions Time where the answering date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"AnsweringDateEnd\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions Time where the answering date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"DeadlineDateStart\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions Time where the deadline date has been set on or after the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"DeadlineDateEnd\": {\n\"format\": \"date-time\",\n\"description\": \"Oral Questions Time where the deadline date has been set on or before the date provided. Date format YYYY-MM-DD.\",\n\"type\": \"string\"\n},\n\"OralQuestionTimeId\": {\n\"format\": \"int32\",\n\"description\": \"Identifier of the OQT\",\n\"type\": \"integer\"\n},\n\"AnsweringBodyIds\": {\n\"description\": \"Which answering body is to respond. A list of answering bodies can be found <a target=\\\"_blank\\\" href=\\\"http://data.parliament.uk/membersdataplatform/services/mnis/referencedata/AnsweringBodies/\\\">here</a>.\",\n\"type\": \"array\",\n\"items\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n}\n},\n\"Skip\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"type\": \"integer\"\n},\n\"Take\": {\n\"format\": \"int32\",\n\"description\": \"The number of records to return, default is 25, maximum is 100.\",\n\"type\": \"integer\"\n}\n}\n},\n\"ApiResponse[List[PublishedOralQuestionTime]]\": {\n\"type\": \"object\",\n\"properties\": {\n\"PagingInfo\": {\n\"$ref\": \"#/definitions/PagingInfo\"\n},\n\"StatusCode\": {\n\"enum\": [\n\"Continue\",\n\"SwitchingProtocols\",\n\"OK\",\n\"Created\",\n\"Accepted\",\n\"NonAuthoritativeInformation\",\n\"NoContent\",\n\"ResetContent\",\n\"PartialContent\",\n\"MultipleChoices\",\n\"Ambiguous\",\n\"MovedPermanently\",\n\"Moved\",\n\"Found\",\n\"Redirect\",\n\"SeeOther\",\n\"RedirectMethod\",\n\"NotModified\",\n\"UseProxy\",\n\"Unused\",\n\"TemporaryRedirect\",\n\"RedirectKeepVerb\",\n\"BadRequest\",\n\"Unauthorized\",\n\"PaymentRequired\",\n\"Forbidden\",\n\"NotFound\",\n\"MethodNotAllowed\",\n\"NotAcceptable\",\n\"ProxyAuthenticationRequired\",\n\"RequestTimeout\",\n\"Conflict\",\n\"Gone\",\n\"LengthRequired\",\n\"PreconditionFailed\",\n\"RequestEntityTooLarge\",\n\"RequestUriTooLong\",\n\"UnsupportedMediaType\",\n\"RequestedRangeNotSatisfiable\",\n\"ExpectationFailed\",\n\"UpgradeRequired\",\n\"InternalServerError\",\n\"NotImplemented\",\n\"BadGateway\",\n\"ServiceUnavailable\",\n\"GatewayTimeout\",\n\"HttpVersionNotSupported\"\n],\n\"type\": \"string\"\n},\n\"Success\": {\n\"type\": \"boolean\",\n\"readOnly\": true\n},\n\"Errors\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n},\n\"Response\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/definitions/PublishedOralQuestionTime\"\n}\n}\n}\n},\n\"PublishedOralQuestionTime\": {\n\"type\": \"object\",\n\"properties\": {\n\"Id\": {\n\"format\": \"int32\",\n\"type\": \"integer\"\n},\n\"AnsweringWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"DeadlineWhen\": {\n\"format\": \"date-time\",\n\"type\": \"string\"\n},\n\"SubstantiveTime\": {\n\"type\": \"string\"\n},\n\"TopicalTime\": {\n\"type\": \"string\"\n},\n\"AnsweringBodyNames\": {\n\"type\": \"string\",\n\"readOnly\": true\n},\n\"AnsweringMinisterTitles\": {\n\"type\": \"string\",\n\"readOnly\": true\n}\n}\n}\n}\n}",
        "auth": {
          "type": "none"
        }
      },
      {
        "id": "0e9c0168-0e9c-4168-8016-e9c18679636b8",
        "title": "Register of Interests API",
        "base_url": "https://members-api.parliament.uk",
        "spec_json": "{\n\"openapi\": \"3.0.1\",\n\"info\": {\n\"title\": \"Register of Interests API\",\n\"description\": \"API to allow users to query and download the register of Members interests.\",\n\"contact\": {\n\"name\": \"UK Parliament\",\n\"url\": \"https://www.parliament.uk/\",\n\"email\": \"softwareengineering@parliament.uk\"\n},\n\"version\": \"v1\"\n},\n\"paths\": {\n\"/api/v1/Categories\": {\n\"get\": {\n\"tags\": [\n\"Categories\"\n],\n\"summary\": \"Return a list of categories interests should be registered under, sorted by category number.\",\n\"parameters\": [\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedCategoryApiLinkedSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ObjectApiResponse\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Categories/{id}\": {\n\"get\": {\n\"tags\": [\n\"Categories\"\n],\n\"summary\": \"Return details of an interest category by ID.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"ID of the category.\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedCategory\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ObjectApiResponse\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Interests\": {\n\"get\": {\n\"tags\": [\n\"Interests\"\n],\n\"summary\": \"Return a list of interests that have been published on a register.\",\n\"parameters\": [\n{\n\"name\": \"MemberId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest created by member with this ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CategoryId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest within a specific category with this ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"PublishedFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"PublishedTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisteredFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest registered on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisteredTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest registered on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"UpdatedFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest which has any updates on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"UpdatedTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest which has any updates on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisterId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published in a register with this ID. If not provided, default value is latest register ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"ExpandChildInterests\",\n\"in\": \"query\",\n\"description\": \"If true returns related interests in a nested format, rather than as individual items.\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20. Maximum is 20.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n},\n{\n\"name\": \"SortOrder\",\n\"in\": \"query\",\n\"description\": \"The order in which to return records.\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/InterestsSortOrder\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedInterestApiLinkedSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ObjectApiResponse\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Interests/csv\": {\n\"get\": {\n\"tags\": [\n\"Interests\"\n],\n\"summary\": \"Return interests that have been published on a register as a collection of CSVs packaged in a ZIP file.\",\n\"description\": \"If the result set is an empty, an empty ZIP will be returned.\",\n\"parameters\": [\n{\n\"name\": \"MemberId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest created by member with this ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CategoryId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest with associated category with this ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"PublishedFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"PublishedTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisteredFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest registered on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisteredTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest registered on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"UpdatedFrom\",\n\"in\": \"query\",\n\"description\": \"Search for an interest which has any updates on or after this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"UpdatedTo\",\n\"in\": \"query\",\n\"description\": \"Search for an interest which has any updates on or before this date.\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date\"\n}\n},\n{\n\"name\": \"RegisterId\",\n\"in\": \"query\",\n\"description\": \"Search for an interest published in a register with this ID. If not provided, default value is latest register ID.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"IncludeFieldDescriptions\",\n\"in\": \"query\",\n\"description\": \"Returns a metadata file for each category, containing a list of fields which are available for a member to add further information about the interest.\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\"\n}\n}\n}\n},\n\"/api/v1/Interests/{id}\": {\n\"get\": {\n\"tags\": [\n\"Interests\"\n],\n\"summary\": \"Return the latest version of an interest which has been published.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"ID of the interest.\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedInterest\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ObjectApiResponse\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Registers\": {\n\"get\": {\n\"tags\": [\n\"Registers\"\n],\n\"summary\": \"Return a list of published versions of registers of interests.\",\n\"parameters\": [\n{\n\"name\": \"SessionId\",\n\"in\": \"query\",\n\"description\": \"Search for registers published within a parliamentary session with this ID. Find session data at https://whatson-api.parliament.uk/.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"The number of records to skip from the first, default is 0.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 0\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"The number of records to return, default is 20.\",\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"default\": 20\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedRegisterApiLinkedSearchResult\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Registers/{id}\": {\n\"get\": {\n\"tags\": [\n\"Registers\"\n],\n\"summary\": \"Return a published version of a register of interests by ID.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"ID of the register.\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/PublishedRegister\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/v1/Registers/{id}/document\": {\n\"get\": {\n\"tags\": [\n\"Registers\"\n],\n\"summary\": \"Return a published register as a PDF document by ID.\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"ID of the register.\",\n\"required\": true,\n\"schema\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"type\",\n\"in\": \"query\",\n\"description\": \"Whether to return a document containing the full register or only updates. Default value is Full.\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/RegisterDocument\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"OK\"\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"components\": {\n\"schemas\": {\n\"ApiResponseError\": {\n\"type\": \"object\",\n\"properties\": {\n\"errorType\": {\n\"$ref\": \"#/components/schemas/ApiResponseErrorType\"\n},\n\"errorMessages\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ApiResponseErrorType\": {\n\"enum\": [\n\"ValidationError\",\n\"AuthenticationError\",\n\"ConnectivityError\",\n\"GenericError\"\n],\n\"type\": \"string\"\n},\n\"Field\": {\n\"type\": \"object\",\n\"properties\": {\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"typeInfo\": {\n\"$ref\": \"#/components/schemas/FieldTypeInfo\"\n},\n\"value\": {\n\"nullable\": true\n},\n\"values\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Field\"\n}\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"FieldTypeInfo\": {\n\"type\": \"object\",\n\"properties\": {\n\"currencyCode\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"InterestsSortOrder\": {\n\"enum\": [\n\"PublishingDateDescending\",\n\"CategoryAscending\"\n],\n\"type\": \"string\",\n\"description\": \"The order in which interests endpoints should return results.\"\n},\n\"Link\": {\n\"type\": \"object\",\n\"properties\": {\n\"rel\": {\n\"type\": \"string\",\n\"description\": \"Relationship of the link to the object requested.\",\n\"nullable\": true\n},\n\"href\": {\n\"type\": \"string\",\n\"description\": \"A complete URL that shows how the action can be performed.\",\n\"nullable\": true\n},\n\"method\": {\n\"type\": \"string\",\n\"description\": \"Request method of the link.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"HATEOAS Link for retrieving related information to a response or object.\"\n},\n\"Member\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"ID of the member.\",\n\"format\": \"int32\"\n},\n\"nameDisplayAs\": {\n\"type\": \"string\",\n\"description\": \"Member's current full name, as it should be displayed in text.\",\n\"nullable\": true\n},\n\"nameListAs\": {\n\"type\": \"string\",\n\"description\": \"Member's current name in the format {surname}, {forename}, for use in an ordered list.\",\n\"nullable\": true\n},\n\"house\": {\n\"type\": \"string\",\n\"description\": \"The name of the House the Member is currently associated with.\",\n\"nullable\": true\n},\n\"memberFrom\": {\n\"type\": \"string\",\n\"description\": \"How they are a Member of Parliament (for MP, this is their constituency)\",\n\"nullable\": true\n},\n\"party\": {\n\"type\": \"string\",\n\"description\": \"Party the Member is currently associated with.\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for retrieving further information about this member.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Member of Parliament who has registered the interest.\"\n},\n\"ObjectApiResponse\": {\n\"type\": \"object\",\n\"properties\": {\n\"error\": {\n\"$ref\": \"#/components/schemas/ApiResponseError\"\n},\n\"response\": {\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ProblemDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"status\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"detail\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"instance\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": {}\n},\n\"PublishedCategory\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"ID of the category.\",\n\"format\": \"int32\"\n},\n\"number\": {\n\"type\": \"string\",\n\"description\": \"Number of the category in the code of conduct.\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"Name of the category.\",\n\"nullable\": true\n},\n\"parentCategoryIds\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"description\": \"The unique ID for any parent category to which this category is associated, if the category is associated with another category.\",\n\"nullable\": true\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/RegisterType\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for retrieving further information about this category.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Category an interest can be registered with.\"\n},\n\"PublishedCategoryApiLinkedSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"skip\": {\n\"type\": \"integer\",\n\"description\": \"The skip value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"description\": \"The take value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"description\": \"The total number of results which matches the query.\",\n\"format\": \"int32\"\n},\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PublishedCategory\"\n},\n\"description\": \"The list of items found for the specified page (by requested skip and take).\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for navigating through the paginated result.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Paginated search result with HATEOAS Links.\"\n},\n\"PublishedInterest\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"ID of the interest.\",\n\"format\": \"int32\"\n},\n\"summary\": {\n\"type\": \"string\",\n\"description\": \"Title Summary for the interest.\",\n\"nullable\": true\n},\n\"parentInterestId\": {\n\"type\": \"integer\",\n\"description\": \"The unique ID for the payer (parent interest) to which this payment (child interest) is associated.\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"registrationDate\": {\n\"type\": \"string\",\n\"description\": \"Registration Date on the published interest.\",\n\"format\": \"date\",\n\"nullable\": true\n},\n\"publishedDate\": {\n\"type\": \"string\",\n\"description\": \"Date when the interest was first published.\",\n\"format\": \"date\",\n\"nullable\": true\n},\n\"updatedDates\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\",\n\"format\": \"date\"\n},\n\"description\": \"A list of dates on which the interest has been updated since it has been published.\",\n\"nullable\": true\n},\n\"category\": {\n\"$ref\": \"#/components/schemas/PublishedCategory\"\n},\n\"member\": {\n\"$ref\": \"#/components/schemas/Member\"\n},\n\"fields\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Field\"\n},\n\"description\": \"List of fields which are available for a member to add further information about the interest.\",\n\"nullable\": true\n},\n\"childInterests\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PublishedInterest\"\n},\n\"description\": \"List of Interests which are sub interests of this interest. This property is only present if `ExpandChildInterests` is true, and is not defined by default.\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for retrieving related information about this interest.\",\n\"nullable\": true\n},\n\"rectified\": {\n\"type\": \"boolean\",\n\"description\": \"Whether the interest has been rectified (e.g. when the interest was submitted late).\"\n},\n\"rectifiedDetails\": {\n\"type\": \"string\",\n\"description\": \"The reason that the interest was rectified, or `null` if the interest was not rectified.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Version of an interest which has been published.\"\n},\n\"PublishedInterestApiLinkedSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"skip\": {\n\"type\": \"integer\",\n\"description\": \"The skip value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"description\": \"The take value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"description\": \"The total number of results which matches the query.\",\n\"format\": \"int32\"\n},\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PublishedInterest\"\n},\n\"description\": \"The list of items found for the specified page (by requested skip and take).\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for navigating through the paginated result.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Paginated search result with HATEOAS Links.\"\n},\n\"PublishedRegister\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"ID of the register.\",\n\"format\": \"int32\"\n},\n\"publishedDate\": {\n\"type\": \"string\",\n\"description\": \"Date when the Register was published.\",\n\"format\": \"date\"\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/RegisterType\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for retrieving related information about this register.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"A published version of a register of interests.\"\n},\n\"PublishedRegisterApiLinkedSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"skip\": {\n\"type\": \"integer\",\n\"description\": \"The skip value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"take\": {\n\"type\": \"integer\",\n\"description\": \"The take value that was used in the query.\",\n\"format\": \"int32\"\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"description\": \"The total number of results which matches the query.\",\n\"format\": \"int32\"\n},\n\"items\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/PublishedRegister\"\n},\n\"description\": \"The list of items found for the specified page (by requested skip and take).\",\n\"nullable\": true\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"description\": \"A list of HATEOAS Links for navigating through the paginated result.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"Paginated search result with HATEOAS Links.\"\n},\n\"RegisterDocument\": {\n\"enum\": [\n\"Full\",\n\"Updated\"\n],\n\"type\": \"string\",\n\"description\": \"Whether a document contains the full register or only updates\"\n},\n\"RegisterType\": {\n\"enum\": [\n\"Commons\"\n],\n\"type\": \"string\",\n\"description\": \"The type of register of interests\"\n}\n}\n}\n}",
        "auth": {
          "type": "none"
        }
      },
      {
        "id": "0f3324d0-0f33-44d0-b24d-f333cbd82f370",
        "title": "Written Questions Service API",
        "base_url": "https://questions-statements-api.parliament.uk",
        "spec_json": "{\n\"openapi\": \"3.0.1\",\n\"info\": {\n\"title\": \"Written Questions Service API\",\n\"description\": \"Data around written questions and answers, as well as written ministerial statements.\",\n\"contact\": {\n\"name\": \"UK Parliament\",\n\"url\": \"https://www.parliament.uk\",\n\"email\": \"softwareengineering@parliament.uk\"\n},\n\"version\": \"v1\"\n},\n\"paths\": {\n\"/api/dailyreports/dailyreports\": {\n\"get\": {\n\"tags\": [\n\"DailyReports\"\n],\n\"summary\": \"Returns a list of daily reports\",\n\"parameters\": [\n{\n\"name\": \"dateFrom\",\n\"in\": \"query\",\n\"description\": \"Daily report with report date on or after the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"dateTo\",\n\"in\": \"query\",\n\"description\": \"Daily report with report date on or before the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"house\",\n\"in\": \"query\",\n\"description\": \"Daily report relating to the House specified. Defaults to Bicameral\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"Number of records to skip, default is 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"Number of records to take, default is 20\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DailyReportViewModelSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DailyReportViewModelSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/DailyReportViewModelSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenquestions/questions\": {\n\"get\": {\n\"tags\": [\n\"WrittenQuestions\"\n],\n\"summary\": \"Returns a list of written questions\",\n\"parameters\": [\n{\n\"name\": \"askingMemberId\",\n\"in\": \"query\",\n\"description\": \"Written questions asked by member with member ID specified\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"answeringMemberId\",\n\"in\": \"query\",\n\"description\": \"Written questions answered by member with member ID specified\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"tabledWhenFrom\",\n\"in\": \"query\",\n\"description\": \"Written questions tabled on or after the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"dateForAnswerWhenFrom\",\n\"in\": \"query\",\n\"description\": \"Written questions DateForAnswer on or after the date specified format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"dateForAnswerWhenTo\",\n\"in\": \"query\",\n\"description\": \"Written questions DateForAnswer on or before the date specified format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"tabledWhenTo\",\n\"in\": \"query\",\n\"description\": \"Written questions tabled on or before the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"answered\",\n\"in\": \"query\",\n\"description\": \"Written questions that have been answered, unanswered or either.\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Answered\"\n}\n},\n{\n\"name\": \"answeredWhenFrom\",\n\"in\": \"query\",\n\"description\": \"Written questions answered on or after the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"answeredWhenTo\",\n\"in\": \"query\",\n\"description\": \"Written questions answered on or before the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"questionStatus\",\n\"in\": \"query\",\n\"description\": \"Written questions with the status specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionStatusEnum\"\n}\n},\n{\n\"name\": \"includeWithdrawn\",\n\"in\": \"query\",\n\"description\": \"Include written questions that have been withdrawn\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the results\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"correctedWhenFrom\",\n\"in\": \"query\",\n\"description\": \"Written questions corrected on or after the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"correctedWhenTo\",\n\"in\": \"query\",\n\"description\": \"Written questions corrected on or before the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"The Session status for which the Questions data will be returned\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n},\n{\n\"name\": \"searchTerm\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements containing the search term specified, searches item content\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"uIN\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements with the uin specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"answeringBodies\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the answering bodies with the IDs specified\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"members\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the members with the IDs specified\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"house\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the House specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"Number of records to skip, default is 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"Number of records to take, default is 20\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenquestions/questions/{id}\": {\n\"get\": {\n\"tags\": [\n\"WrittenQuestions\"\n],\n\"summary\": \"Returns a written question\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"written question with ID specified\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the result\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"Session status to get the Questions data for\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenquestions/questions/{date}/{uin}\": {\n\"get\": {\n\"tags\": [\n\"WrittenQuestions\"\n],\n\"summary\": \"Returns a written question\",\n\"parameters\": [\n{\n\"name\": \"date\",\n\"in\": \"path\",\n\"description\": \"Written question on date specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"uin\",\n\"in\": \"path\",\n\"description\": \"Written question with uid specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the results\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"Session status to get the Questions data for\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenstatements/statements\": {\n\"get\": {\n\"tags\": [\n\"WrittenStatements\"\n],\n\"summary\": \"Returns a list of written statements\",\n\"parameters\": [\n{\n\"name\": \"madeWhenFrom\",\n\"in\": \"query\",\n\"description\": \"Written statements made on or after the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"madeWhenTo\",\n\"in\": \"query\",\n\"description\": \"Written statements made on or before the date specified. Date format yyyy-mm-dd\",\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"The Session status for which the Written statements data will be returned\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n},\n{\n\"name\": \"searchTerm\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements containing the search term specified, searches item content\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"uIN\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements with the uin specified\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"answeringBodies\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the answering bodies with the IDs specified\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"members\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the members with the IDs specified\",\n\"schema\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"house\",\n\"in\": \"query\",\n\"description\": \"Written questions / statements relating to the House specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n}\n},\n{\n\"name\": \"skip\",\n\"in\": \"query\",\n\"description\": \"Number of records to skip, default is 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"take\",\n\"in\": \"query\",\n\"description\": \"Number of records to take, default is 20\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the results\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenstatements/statements/{id}\": {\n\"get\": {\n\"tags\": [\n\"WrittenStatements\"\n],\n\"summary\": \"Returns a written statement\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Written statement with ID specified\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the results\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"Session status to filter the Written statement records\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelSearchResult\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/writtenstatements/statements/{date}/{uin}\": {\n\"get\": {\n\"tags\": [\n\"WrittenStatements\"\n],\n\"summary\": \"Returns a written statemnet\",\n\"parameters\": [\n{\n\"name\": \"date\",\n\"in\": \"path\",\n\"description\": \"Written statement on date specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"uin\",\n\"in\": \"path\",\n\"description\": \"Written statement with uid specified\",\n\"required\": true,\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"expandMember\",\n\"in\": \"query\",\n\"description\": \"Expand the details of Members in the results\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"sessionStatus\",\n\"in\": \"query\",\n\"description\": \"Session status to filter the Written statement records\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/SessionStatus\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelItem\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelItem\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelItem\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/ProblemDetails\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"components\": {\n\"schemas\": {\n\"Answered\": {\n\"enum\": [\n\"Any\",\n\"Answered\",\n\"Unanswered\"\n],\n\"type\": \"string\"\n},\n\"AttachmentViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fileType\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fileSizeBytes\": {\n\"type\": \"integer\",\n\"format\": \"int64\"\n}\n},\n\"additionalProperties\": false\n},\n\"DailyReportViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"house\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n},\n\"date\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"fileSizeBytes\": {\n\"type\": \"integer\",\n\"format\": \"int64\"\n},\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"DailyReportViewModelItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"$ref\": \"#/components/schemas/DailyReportViewModel\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"DailyReportViewModelSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"results\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/DailyReportViewModelItem\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"GroupedQuestionViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"questionUin\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"dateTabled\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n\"additionalProperties\": false\n},\n\"HouseEnum\": {\n\"enum\": [\n\"Bicameral\",\n\"Commons\",\n\"Lords\"\n],\n\"type\": \"string\"\n},\n\"Link\": {\n\"type\": \"object\",\n\"properties\": {\n\"rel\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"href\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"method\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"LinkedStatements\": {\n\"type\": \"object\",\n\"properties\": {\n\"linkedStatementId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"linkType\": {\n\"$ref\": \"#/components/schemas/StatementLinkTypeEnum\"\n},\n\"linkDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n\"additionalProperties\": false\n},\n\"MemberViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"listAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"party\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"partyColour\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"partyAbbreviation\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberFrom\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"thumbnailUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"ProblemDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"status\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"detail\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"instance\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": {}\n},\n\"QuestionStatusEnum\": {\n\"enum\": [\n\"NotAnswered\",\n\"AnsweredOnly\",\n\"AllQuestions\"\n],\n\"type\": \"string\"\n},\n\"QuestionsViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"askingMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"askingMember\": {\n\"$ref\": \"#/components/schemas/MemberViewModel\"\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n},\n\"memberHasInterest\": {\n\"type\": \"boolean\"\n},\n\"dateTabled\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"dateForAnswer\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"uin\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"questionText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"answeringBodyId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"answeringBodyName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isWithdrawn\": {\n\"type\": \"boolean\"\n},\n\"isNamedDay\": {\n\"type\": \"boolean\"\n},\n\"groupedQuestions\": {\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n},\n\"nullable\": true\n},\n\"answerIsHolding\": {\n\"type\": \"boolean\",\n\"nullable\": true\n},\n\"answerIsCorrection\": {\n\"type\": \"boolean\",\n\"nullable\": true\n},\n\"answeringMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"answeringMember\": {\n\"$ref\": \"#/components/schemas/MemberViewModel\"\n},\n\"correctingMemberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"correctingMember\": {\n\"$ref\": \"#/components/schemas/MemberViewModel\"\n},\n\"dateAnswered\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"answerText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"originalAnswerText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"comparableAnswerText\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"dateAnswerCorrected\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateHoldingAnswer\": {\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"attachmentCount\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"heading\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"attachments\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/AttachmentViewModel\"\n},\n\"nullable\": true\n},\n\"groupedQuestionsDates\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/GroupedQuestionViewModel\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"QuestionsViewModelItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModel\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"QuestionsViewModelSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"results\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/QuestionsViewModelItem\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"SessionStatus\": {\n\"enum\": [\n\"Current\",\n\"Any\"\n],\n\"type\": \"string\"\n},\n\"StatementLinkTypeEnum\": {\n\"enum\": [\n\"CorrectedStatement\",\n\"CorrectedAnswer\",\n\"JointStatement\"\n],\n\"type\": \"string\"\n},\n\"StatementsViewModel\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"memberId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"member\": {\n\"$ref\": \"#/components/schemas/MemberViewModel\"\n},\n\"memberRole\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"uin\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"dateMade\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"answeringBodyId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"answeringBodyName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"text\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/HouseEnum\"\n},\n\"noticeNumber\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"hasAttachments\": {\n\"type\": \"boolean\"\n},\n\"hasLinkedStatements\": {\n\"type\": \"boolean\"\n},\n\"linkedStatements\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/LinkedStatements\"\n},\n\"nullable\": true\n},\n\"attachments\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/AttachmentViewModel\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"StatementsViewModelItem\": {\n\"type\": \"object\",\n\"properties\": {\n\"value\": {\n\"$ref\": \"#/components/schemas/StatementsViewModel\"\n},\n\"links\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"StatementsViewModelSearchResult\": {\n\"type\": \"object\",\n\"properties\": {\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"results\": {\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/StatementsViewModelItem\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n}\n}\n}\n}",
        "auth": {
          "type": "none"
        }
      },
      {
        "id": "0b455870-0b45-4870-9587-b456a2e2a3850",
        "title": "Committees API",
        "base_url": "https://committees-api.parliament.uk",
        "spec_json": "{\n\"openapi\": \"3.0.1\",\n\"info\": {\n\"title\": \"Committees API\",\n\"description\": \"API to get and search for information regarding committees, membership and items of committee business.\",\n\"contact\": {\n\"name\": \"UK Parliament\",\n\"url\": \"https://www.parliament.uk\",\n\"email\": \"softwareengineering@parliament.uk\"\n},\n\"version\": \"v1\"\n},\n\"paths\": {\n\"/api/BillPetitions\": {\n\"get\": {\n\"tags\": [\n\"Bill Petitions\"\n],\n\"summary\": \"Return a list of Bill petitions\",\n\"operationId\": \"GetBillPetitions\",\n\"parameters\": [\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee business with the committee business id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee with the committee id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by witness names, organisation names, and submission identifiers (where applicable). Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or after date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or before date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.HybridBillPetition]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.HybridBillPetition]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.HybridBillPetition]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/BillPetitions/{id}\": {\n\"get\": {\n\"tags\": [\n\"Bill Petitions\"\n],\n\"summary\": \"Return a Bill petition\",\n\"operationId\": \"GetBillPetitionById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Bill petition with ID specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.HybridBillPetition\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.HybridBillPetition\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.HybridBillPetition\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/BillPetitions/{id}/Document/{fileDataFormat}\": {\n\"get\": {\n\"tags\": [\n\"Bill Petitions\"\n],\n\"summary\": \"Return a document for a Bill petition\",\n\"operationId\": \"GetBillPetitionDocument\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Petition Id of the document return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"fileDataFormat\",\n\"in\": \"path\",\n\"description\": \"Type of file to return\",\n\"required\": true,\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Broadcast/Meetings\": {\n\"get\": {\n\"tags\": [\n\"Broadcast\"\n],\n\"summary\": \"Get a list of Committee Meetings between two dates.\",\n\"operationId\": \"Get\",\n\"parameters\": [\n{\n\"name\": \"FromDate\",\n\"in\": \"query\",\n\"description\": \"Get meetings from and including this date, format 'yyyy-mm-dd'.\",\n\"required\": true,\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"ToDate\",\n\"in\": \"query\",\n\"description\": \"Get meetings up to and including this date, format 'yyyy-mm-dd'.\",\n\"required\": true,\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Activities for event with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeMeetingForBroadcasters>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeMeetingForBroadcasters\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeMeetingForBroadcasters>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeMeetingForBroadcasters\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeMeetingForBroadcasters>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeMeetingForBroadcasters\"\n}\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No event with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/CommitteeBusiness\": {\n\"get\": {\n\"tags\": [\n\"Committee Business\"\n],\n\"summary\": \"Return a list of committee businesses\",\n\"operationId\": \"GetCommitteeBusiness\",\n\"parameters\": [\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by committee business name. Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"Id for the related committee\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"DateFrom\",\n\"in\": \"query\",\n\"description\": \"List of committee business starting on or after date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"DateTo\",\n\"in\": \"query\",\n\"description\": \"List of committee business opened on or before date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"BusinessTypeId\",\n\"in\": \"query\",\n\"description\": \"Id for committee business type\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Status\",\n\"in\": \"query\",\n\"description\": \"List of committees business by status\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.CommitteeBusinessStatus\"\n}\n},\n{\n\"name\": \"CurrentlyAcceptingPetitions\",\n\"in\": \"query\",\n\"description\": \"Limit to committee businesses that are currently accepting hybrid or private bill petitions\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"CurrentlyAcceptingEvidence\",\n\"in\": \"query\",\n\"description\": \"Limit to committee businesses that are currently accepting written evidence submissions\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SortOrder\",\n\"in\": \"query\",\n\"description\": \"List committee business by specified sort order\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.CommitteeBusinessQuerySortOrder\"\n}\n},\n{\n\"name\": \"CommitteeBusinessIds\",\n\"in\": \"query\",\n\"description\": \"List of committee businesses by Ids\",\n\"schema\": {\n\"title\": \"IEnumerable<Nullable`1>\",\n\"type\": \"array\",\n\"items\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"List of committee businesses matching the specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeBusinessSummary]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeBusinessSummary]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeBusinessSummary]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"There was an error with one or more of specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/CommitteeBusiness/{id}\": {\n\"get\": {\n\"tags\": [\n\"Committee Business\"\n],\n\"summary\": \"Return a committee business\",\n\"operationId\": \"GetCommitteeBusinessById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Committee business Id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"includeBanners\",\n\"in\": \"query\",\n\"description\": \"Include banner image file in result - defaults to false\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": false\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Committee business with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No Committee business with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/CommitteeBusiness/{id}/Publications/Summary\": {\n\"get\": {\n\"tags\": [\n\"Committee Business\"\n],\n\"summary\": \"Return a list of Publication Groups for a Commitee Business\",\n\"operationId\": \"ListCommitteeBusinessPublicationGroups\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"The committee business id\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/CommitteeBusinessType\": {\n\"get\": {\n\"tags\": [\n\"Committee Business Types\"\n],\n\"summary\": \"Return a list of Committee Business Types\",\n\"operationId\": \"ListCommitteeBusinessTypes\",\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeBusinessType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Business.CommitteeBusinessType\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeBusinessType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Business.CommitteeBusinessType\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeBusinessType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Business.CommitteeBusinessType\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/CommitteeType\": {\n\"get\": {\n\"tags\": [\n\"Committee Types\"\n],\n\"summary\": \"Return a list of Committee Types\",\n\"operationId\": \"ListCommitteeTypes\",\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a list of Committees\",\n\"operationId\": \"GetCommittees\",\n\"parameters\": [\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of committees by committee business\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by committee name. Performs a full text search across committee names (including historic), as well as any metadata configured for the committee.\",\n\"schema\": {\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"ParentCommitteeId\",\n\"in\": \"query\",\n\"description\": \"List of committees by child committees of a parent\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeStatus\",\n\"in\": \"query\",\n\"description\": \"List of committees by status - defaults to current\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.CommitteeStatus\"\n}\n},\n{\n\"name\": \"CommitteeTypeId\",\n\"in\": \"query\",\n\"description\": \"List of committees by the type\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeCategory\",\n\"in\": \"query\",\n\"description\": \"List of committees by category\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.CommitteeCategory\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"List of committees by House\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n}\n},\n{\n\"name\": \"CommitteeIds\",\n\"in\": \"query\",\n\"description\": \"List of committees by Ids\",\n\"schema\": {\n\"title\": \"IEnumerable<Nullable`1>\",\n\"type\": \"array\",\n\"items\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeSummary]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeSummary]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeSummary]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/NextEvent\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a list of next events for committees matching specified criteria\",\n\"operationId\": \"GetNextEventForCommittees\",\n\"parameters\": [\n{\n\"name\": \"EventWithActivitiesOnly\",\n\"in\": \"query\",\n\"description\": \"Only returns events with valid activities - defaults to false\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"EventFromDate\",\n\"in\": \"query\",\n\"description\": \"Date from which upcoming event is to be calculated\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"House of committee\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n}\n},\n{\n\"name\": \"EventTypes\",\n\"in\": \"query\",\n\"description\": \"List of event activities with the specified event type\",\n\"schema\": {\n\"title\": \"IEnumerable<Int32>\",\n\"type\": \"array\",\n\"items\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a Committee\",\n\"operationId\": \"GetCommitteeById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Committee with ID specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"includeBanners\",\n\"in\": \"query\",\n\"description\": \"Include banner image file in result - defaults to false\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": false\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeDetails\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/Events\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return events related to the committee id provided\",\n\"operationId\": \"GetEventsCommitteeById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Committee with id specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of events related to a committee business\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"List of events containing the search term specified. Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events starting after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"StartDateTo\",\n\"in\": \"query\",\n\"description\": \"List of events starting before the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events ending after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"List of events with committees pertaining to the house specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n}\n},\n{\n\"name\": \"LocationId\",\n\"in\": \"query\",\n\"description\": \"List of events with the location id specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"ExcludeCancelledEvents\",\n\"in\": \"query\",\n\"description\": \"Exclude cancelled events from the response\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SortAscending\",\n\"in\": \"query\",\n\"description\": \"Sort by start date ascending\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"EventTypeId\",\n\"in\": \"query\",\n\"description\": \"List of events with the specified event type\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"IncludeEventAttendees\",\n\"in\": \"query\",\n\"description\": \"Include the events attendees in the response (it's a little more expensive to do so)\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/Members\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a list of Memberships of a Committee\",\n\"operationId\": \"ListCommitteeMemberships\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"The committee id\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"MembershipStatus\",\n\"in\": \"query\",\n\"description\": \"List of committee members' memberships by status\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.MembershipStatus\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/Members/{personId}\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return photo for a lay member of the committee\",\n\"operationId\": \"GetCommitteePersonPhoto\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"The committee id\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"personId\",\n\"in\": \"path\",\n\"description\": \"Id of the lay member\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/Staff\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a list of staff members of a Committee\",\n\"operationId\": \"ListCommitteeStaffMemberships\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"The committee id\",\n\"required\": true,\n\"schema\": {\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"MembershipStatus\",\n\"in\": \"query\",\n\"description\": \"List of committee staff by status\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.MembershipStatus\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/Publications/Summary\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return a list of Publication Groups for a Commitee\",\n\"operationId\": \"ListCommitteePublicationGroups\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"The committee id\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.PublicationGroup\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Committees/{id}/ArchivedPublicationLinks\": {\n\"get\": {\n\"tags\": [\n\"Committees\"\n],\n\"summary\": \"Return all CommitteeArchivedPublicationLinks linked to a Committee\",\n\"operationId\": \"GetCommitteeArchivedPublicationLinks\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Committee Id specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<ArchivedPublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ArchivedPublicationGroup\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<ArchivedPublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ArchivedPublicationGroup\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<ArchivedPublicationGroup>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ArchivedPublicationGroup\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"/api/Countries\": {\n\"get\": {\n\"tags\": [\n\"Countries\"\n],\n\"summary\": \"Return a list of Countries\",\n\"operationId\": \"GetCountries\",\n\"responses\": {\n\"200\": {\n\"description\": \"List of Countries\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<Country>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Country\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<Country>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Country\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<Country>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Country\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"/api/Events\": {\n\"get\": {\n\"tags\": [\n\"Events\"\n],\n\"summary\": \"Return a list of events\",\n\"operationId\": \"GetEvents\",\n\"parameters\": [\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"Return a list of events for the committee ID specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"Return a list of events for the committee Business ID specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"GroupChildEventsWithParent\",\n\"in\": \"query\",\n\"description\": \"Return child events as a property of its parent event - defaults to false\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"List of events containing the search term specified. Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events starting after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"StartDateTo\",\n\"in\": \"query\",\n\"description\": \"List of events starting before the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events ending after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"List of events with committees pertaining to the house specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n}\n},\n{\n\"name\": \"LocationId\",\n\"in\": \"query\",\n\"description\": \"List of events with the location id specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"ExcludeCancelledEvents\",\n\"in\": \"query\",\n\"description\": \"Exclude cancelled events from the response\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SortAscending\",\n\"in\": \"query\",\n\"description\": \"Sort by start date ascending\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"EventTypeId\",\n\"in\": \"query\",\n\"description\": \"List of events with the specified event type\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"IncludeEventAttendees\",\n\"in\": \"query\",\n\"description\": \"Include the events attendees in the response (it's a little more expensive to do so)\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"List of events matching the specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"There was an error with one or more of specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Events/Activities\": {\n\"get\": {\n\"tags\": [\n\"Events\"\n],\n\"summary\": \"Return a list of event activities\",\n\"operationId\": \"GetEventActivities\",\n\"parameters\": [\n{\n\"name\": \"IncludeActivityAttendees\",\n\"in\": \"query\",\n\"description\": \"Return a list of attendees with each activity - defaults to false\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"Return a list of events for the committee ID specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"Return a list of events for the committee Business ID specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"GroupChildEventsWithParent\",\n\"in\": \"query\",\n\"description\": \"Return child events as a property of its parent event - defaults to false\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"List of events containing the search term specified. Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events starting after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"StartDateTo\",\n\"in\": \"query\",\n\"description\": \"List of events starting before the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDateFrom\",\n\"in\": \"query\",\n\"description\": \"List of events ending after the date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"House\",\n\"in\": \"query\",\n\"description\": \"List of events with committees pertaining to the house specified\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n}\n},\n{\n\"name\": \"LocationId\",\n\"in\": \"query\",\n\"description\": \"List of events with the location id specified\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"ExcludeCancelledEvents\",\n\"in\": \"query\",\n\"description\": \"Exclude cancelled events from the response\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"SortAscending\",\n\"in\": \"query\",\n\"description\": \"Sort by start date ascending\",\n\"schema\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"EventTypeId\",\n\"in\": \"query\",\n\"description\": \"List of events with the specified event type\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"IncludeEventAttendees\",\n\"in\": \"query\",\n\"description\": \"Include the events attendees in the response (it's a little more expensive to do so)\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"List of events with activities matching the specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"There was an error with one or more of specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Events/{id}\": {\n\"get\": {\n\"tags\": [\n\"Events\"\n],\n\"summary\": \"Return an event\",\n\"operationId\": \"GetEventById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Event Id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Event with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No event with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Events/{id}/Attendance\": {\n\"get\": {\n\"tags\": [\n\"Events\"\n],\n\"summary\": \"Return a list of attendances for an event\",\n\"operationId\": \"GetAttendancesById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Event Id to return attendance for\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Attendance for event with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventAttendanceDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventAttendanceDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventAttendanceDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No event with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Events/{id}/Activities\": {\n\"get\": {\n\"tags\": [\n\"Events\"\n],\n\"summary\": \"Return a list of activities for an event\",\n\"operationId\": \"GetActivitiesById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Event Id to return activities for\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Activities for event with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n}\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No event with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Members\": {\n\"get\": {\n\"tags\": [\n\"Members\"\n],\n\"summary\": \"Return a list of memberships for one or more members\",\n\"operationId\": \"ListMembersCommitteeMemberships\",\n\"parameters\": [\n{\n\"name\": \"Members\",\n\"in\": \"query\",\n\"description\": \"List of member ids to filter by\",\n\"required\": true,\n\"schema\": {\n\"title\": \"IEnumerable<Nullable`1>\",\n\"type\": \"array\",\n\"items\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"MembershipStatus\",\n\"in\": \"query\",\n\"description\": \"List of committee members' memberships by status\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.MembershipStatus\"\n}\n},\n{\n\"name\": \"CommitteeCategory\",\n\"in\": \"query\",\n\"description\": \"List of committee members' memberships by committee category\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.CommitteeCategory\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<MemberFullMemberships>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MemberFullMemberships\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<MemberFullMemberships>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MemberFullMemberships\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<MemberFullMemberships>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MemberFullMemberships\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Messaging/Banners/{location}\": {\n\"get\": {\n\"tags\": [\n\"Messaging\"\n],\n\"summary\": \"Return messaging banners\",\n\"operationId\": \"Banners\",\n\"parameters\": [\n{\n\"name\": \"location\",\n\"in\": \"path\",\n\"description\": \"Location of banner to return\",\n\"required\": true,\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Services.Domain.BannerLocation\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"List of banners matching criteria\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<MessagingBannerDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MessagingBannerDetails\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<MessagingBannerDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MessagingBannerDetails\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<MessagingBannerDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.MessagingBannerDetails\"\n}\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No banners matching criteria exist\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/OralEvidence\": {\n\"get\": {\n\"tags\": [\n\"Oral Evidence\"\n],\n\"summary\": \"Return a list of Oral Evidence\",\n\"operationId\": \"GetOralEvidence\",\n\"parameters\": [\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee business with the committee business id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee with the committee id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by witness names, organisation names, and submission identifiers (where applicable). Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or after date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or before date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.OralEvidence]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.OralEvidence]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.OralEvidence]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/OralEvidence/{id}\": {\n\"get\": {\n\"tags\": [\n\"Oral Evidence\"\n],\n\"summary\": \"Return an Oral Evidence\",\n\"operationId\": \"GetOralEvidenceById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Oral Evidence with ID specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.OralEvidence\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.OralEvidence\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.OralEvidence\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/OralEvidence/{id}/Document/{fileDataFormat}\": {\n\"get\": {\n\"tags\": [\n\"Oral Evidence\"\n],\n\"summary\": \"Return a document for an Oral Evidence\",\n\"operationId\": \"GetOralEvidenceDocument\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Oral Evidence Id of the document return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"fileDataFormat\",\n\"in\": \"path\",\n\"description\": \"Type of file to return\",\n\"required\": true,\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/PublicationType\": {\n\"get\": {\n\"tags\": [\n\"Publication Types\"\n],\n\"summary\": \"Return a list of Publication Types\",\n\"operationId\": \"ListPublicationTypes\",\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n}\n}\n},\n\"application/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n}\n}\n},\n\"text/json\": {\n\"schema\": {\n\"title\": \"IEnumerable<PublicationType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n}\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Publications\": {\n\"get\": {\n\"tags\": [\n\"Publications\"\n],\n\"summary\": \"Return a list of publications\",\n\"operationId\": \"GetPublications\",\n\"parameters\": [\n{\n\"name\": \"PublicationTypeIds\",\n\"in\": \"query\",\n\"description\": \"Ids for types of publications\",\n\"schema\": {\n\"title\": \"IEnumerable<Nullable`1>\",\n\"type\": \"array\",\n\"items\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by publication description, metadata, and paper number (where applicable). Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDate\",\n\"in\": \"query\",\n\"description\": \"List of publications published on or after date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDate\",\n\"in\": \"query\",\n\"description\": \"List of publications published on or before date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"SortOrder\",\n\"in\": \"query\",\n\"description\": \"List publications by specified sort order\",\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.PublicationQuerySortOrder\"\n}\n},\n{\n\"name\": \"PaperNumbers\",\n\"in\": \"query\",\n\"description\": \"List of publications by specfied paper numbers\",\n\"schema\": {\n\"title\": \"IEnumerable<String>\",\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n}\n}\n},\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of publications related to a committee business with the committee business id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"List of publications related to a committee with the committee id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"List of publications matching the specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Publication]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Publication]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Publication]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"There was an error with one or more of specified search parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Publications/{id}\": {\n\"get\": {\n\"tags\": [\n\"Publications\"\n],\n\"summary\": \"Return a publication\",\n\"operationId\": \"GetPublicationById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Publication Id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Publication with given Id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Publication\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Publication\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Publication\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No Publication with given Id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/Publications/{id}/Document/{documentId}/{fileDataFormat}\": {\n\"get\": {\n\"tags\": [\n\"Publications\"\n],\n\"summary\": \"Return a document for a publication\",\n\"operationId\": \"GetDocument\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Publication Id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"documentId\",\n\"in\": \"path\",\n\"description\": \"Document Id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"fileDataFormat\",\n\"in\": \"path\",\n\"description\": \"Type of file to return\",\n\"required\": true,\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Document and its data with given Ids\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"One of the parameters supplied is invalid\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/SubmissionPeriodTemplate/{id}/Document/{documentId}\": {\n\"get\": {\n\"tags\": [\n\"Submission Period Templates\"\n],\n\"summary\": \"Return a submission period template file\",\n\"operationId\": \"GetSubmissionPeriodTemplateDocumentById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Submission period template id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"documentId\",\n\"in\": \"path\",\n\"description\": \"Document id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Submission period template document with given parameters\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No submission period template with given parameters exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/SubmissionPeriod/{id}\": {\n\"get\": {\n\"tags\": [\n\"Submission Periods\"\n],\n\"summary\": \"Return a submission period\",\n\"operationId\": \"GetSubmissionPeriodById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Submission period id to return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Submission period with given id\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.SubmissionPeriodDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.SubmissionPeriodDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.SubmissionPeriodDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"No submission period with given id exists\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/WrittenEvidence\": {\n\"get\": {\n\"tags\": [\n\"Written Evidence\"\n],\n\"summary\": \"Return a list of Written Evidence\",\n\"operationId\": \"GetWrittenEvidence\",\n\"parameters\": [\n{\n\"name\": \"CommitteeBusinessId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee business with the committee business id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"CommitteeId\",\n\"in\": \"query\",\n\"description\": \"List of evidence related to a committee with the committee id\",\n\"schema\": {\n\"title\": \"Nullable<Int32>\",\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"SearchTerm\",\n\"in\": \"query\",\n\"description\": \"Search by witness names, organisation names, and submission identifiers (where applicable). Must be 2 characters or more.\",\n\"schema\": {\n\"minLength\": 2,\n\"type\": \"string\"\n}\n},\n{\n\"name\": \"StartDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or after date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"EndDate\",\n\"in\": \"query\",\n\"description\": \"List of evidence published on or before date provided\",\n\"schema\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\"\n}\n},\n{\n\"name\": \"ShowOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\"\n}\n},\n{\n\"name\": \"Skip\",\n\"in\": \"query\",\n\"description\": \"Numbers of items to skip - defaults to 0\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 0,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"Take\",\n\"in\": \"query\",\n\"description\": \"Number of items to be returned - defaults to 30\",\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.WrittenEvidence]\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.WrittenEvidence]\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.WrittenEvidence]\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/WrittenEvidence/{id}\": {\n\"get\": {\n\"tags\": [\n\"Written Evidence\"\n],\n\"summary\": \"Return a Written Evidence\",\n\"operationId\": \"GetWrittenEvidenceById\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Written Evidence with the Id specified\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"showOnWebsiteOnly\",\n\"in\": \"query\",\n\"description\": \"Only return committee website results - defaults to true\",\n\"schema\": {\n\"type\": \"boolean\",\n\"default\": true\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.WrittenEvidence\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.WrittenEvidence\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.WrittenEvidence\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n},\n\"/api/WrittenEvidence/{id}/Document/{fileDataFormat}\": {\n\"get\": {\n\"tags\": [\n\"Written Evidence\"\n],\n\"summary\": \"Return a document for a Written Evidence\",\n\"operationId\": \"GetWrittenEvidenceDocument\",\n\"parameters\": [\n{\n\"name\": \"id\",\n\"in\": \"path\",\n\"description\": \"Evidence Id of the document return\",\n\"required\": true,\n\"schema\": {\n\"maximum\": 2147483647,\n\"minimum\": 1,\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n{\n\"name\": \"fileDataFormat\",\n\"in\": \"path\",\n\"description\": \"Type of file to return\",\n\"required\": true,\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n}\n}\n],\n\"responses\": {\n\"200\": {\n\"description\": \"Success\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.DocumentFileDetail\"\n}\n}\n}\n},\n\"400\": {\n\"description\": \"Bad Request\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n},\n\"404\": {\n\"description\": \"Not Found\",\n\"content\": {\n\"text/plain\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"application/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n},\n\"text/json\": {\n\"schema\": {\n\"$ref\": \"#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails\"\n}\n}\n}\n}\n}\n}\n}\n},\n\"components\": {\n\"schemas\": {\n\"Committees.Common.Enums.CommitteeBusinessQuerySortOrder\": {\n\"enum\": [\n\"DateOpenedNewest\",\n\"DateOpenedOldest\",\n\"PublicationDateAscending\",\n\"PublicationDateDescending\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.CommitteeBusinessStatus\": {\n\"enum\": [\n\"Open\",\n\"Closed\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.CommitteeCategory\": {\n\"enum\": [\n\"Select\",\n\"General\",\n\"Other\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.CommitteeStatus\": {\n\"enum\": [\n\"Current\",\n\"Former\",\n\"All\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.FileDataFormat\": {\n\"enum\": [\n\"OriginalFormat\",\n\"Html\",\n\"Pdf\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.House\": {\n\"enum\": [\n\"Commons\",\n\"Lords\",\n\"Joint\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.MembershipStatus\": {\n\"enum\": [\n\"Current\",\n\"Former\",\n\"All\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.PublicationQuerySortOrder\": {\n\"enum\": [\n\"PublicationDateDescending\",\n\"PublicationDateAscending\",\n\"ResponseDateDescending\",\n\"ResponseDateAscending\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.RemoteAttendanceStatus\": {\n\"enum\": [\n\"InPerson\",\n\"Remote\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.SubmissionType\": {\n\"enum\": [\n\"OralEvidence\",\n\"WrittenEvidence\",\n\"Petition\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Enums.SubmitterType\": {\n\"enum\": [\n\"Individual\",\n\"Organisation\",\n\"Proxy\"\n],\n\"type\": \"string\"\n},\n\"Committees.Common.Link\": {\n\"type\": \"object\",\n\"properties\": {\n\"rel\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"href\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"method\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeBusinessSummary]\": {\n\"title\": \"ResourceCollection<CommitteeBusinessSummary>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeMember]\": {\n\"title\": \"ResourceCollection<CommitteeMember>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<CommitteeMember>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeMember\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.CommitteeSummary]\": {\n\"title\": \"ResourceCollection<CommitteeSummary>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Events.EventSummary]\": {\n\"title\": \"ResourceCollection<EventSummary>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<EventSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventSummary\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.HybridBillPetition]\": {\n\"title\": \"ResourceCollection<HybridBillPetition>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<HybridBillPetition>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.HybridBillPetition\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.OralEvidence]\": {\n\"title\": \"ResourceCollection<OralEvidence>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<OralEvidence>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.OralEvidence\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.Common.Submission.WrittenEvidence]\": {\n\"title\": \"ResourceCollection<WrittenEvidence>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<WrittenEvidence>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.WrittenEvidence\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.EventActivities]\": {\n\"title\": \"ResourceCollection<EventActivities>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<EventActivities>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.EventActivities\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.ResourceCollection`1[Committees.Common.Responses.Publication]\": {\n\"title\": \"ResourceCollection<Publication>\",\n\"type\": \"object\",\n\"properties\": {\n\"items\": {\n\"title\": \"IEnumerable<Publication>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Publication\"\n},\n\"nullable\": true\n},\n\"totalResults\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"itemsPerPage\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"links\": {\n\"title\": \"ICollection<Link>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Link\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.ActivityDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the activity\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The name of the activity\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"The datetime the activity starts\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The datetime the activity ends\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"eventId\": {\n\"type\": \"integer\",\n\"description\": \"The id of the event this activity is attached to\",\n\"format\": \"int32\"\n},\n\"isPrivate\": {\n\"type\": \"boolean\",\n\"description\": \"Whether an activity is private or public\"\n},\n\"activityType\": {\n\"type\": \"string\",\n\"description\": \"Type of activity\",\n\"nullable\": true\n},\n\"attendees\": {\n\"title\": \"IEnumerable<ActivityPerson>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.ActivityPerson\"\n},\n\"description\": \"A list of attendees of the activity\",\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"oralEvidences\": {\n\"title\": \"IEnumerable<OralEvidence>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.OralEvidence\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.ArchivedPublicationGroup\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"url\": {\n\"type\": \"string\",\n\"format\": \"uri\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Broadcast.ActivityForBroadcasters\": {\n\"type\": \"object\",\n\"properties\": {\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The name of the activity.\",\n\"nullable\": true\n},\n\"type\": {\n\"type\": \"string\",\n\"description\": \"The type of the activity.\",\n\"nullable\": true\n},\n\"startTime\": {\n\"type\": \"string\",\n\"description\": \"The start time of the activity.\",\n\"format\": \"date-time\"\n},\n\"endTime\": {\n\"title\": \"Nullable<DateTimeOffset>\",\n\"type\": \"string\",\n\"description\": \"The end time for the activity.\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"private\": {\n\"type\": \"boolean\",\n\"description\": \"Whether the activity is held in private.\"\n},\n\"subjects\": {\n\"title\": \"IEnumerable<String>\",\n\"type\": \"array\",\n\"items\": {\n\"type\": \"string\"\n},\n\"description\": \"The committee business that forms the subject of the meeting.\",\n\"nullable\": true\n},\n\"attendees\": {\n\"title\": \"IEnumerable<ActivityPerson>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.ActivityPerson\"\n},\n\"description\": \"The people attending the activity.\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false,\n\"description\": \"An activity representation for broadcasters.\"\n},\n\"Committees.Common.Responses.Broadcast.MeetingLocation\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeBusinessDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Id of committee business\",\n\"format\": \"int32\"\n},\n\"title\": {\n\"type\": \"string\",\n\"description\": \"Title of committee business\",\n\"nullable\": true\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Business.CommitteeBusinessType\"\n},\n\"openDate\": {\n\"type\": \"string\",\n\"description\": \"Date the business started\",\n\"format\": \"date-time\"\n},\n\"closeDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date the business ended\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"latestReport\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationSummary\"\n},\n\"openSubmissionPeriods\": {\n\"title\": \"IEnumerable<SubmissionPeriodSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodSummary\"\n},\n\"description\": \"Currently open submission periods\",\n\"nullable\": true\n},\n\"closedSubmissionPeriods\": {\n\"title\": \"IEnumerable<SubmissionPeriodSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodSummary\"\n},\n\"description\": \"Closed submission periods\",\n\"nullable\": true\n},\n\"nextOralEvidenceSession\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Activity.ActivitySummary\"\n},\n\"contact\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContactInformation\"\n},\n\"scope\": {\n\"type\": \"string\",\n\"description\": \"Scope of the committee business\",\n\"nullable\": true\n},\n\"relatedInformation\": {\n\"title\": \"IEnumerable<Links>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.Links\"\n},\n\"description\": \"Related information for the committee business\",\n\"nullable\": true\n},\n\"banner\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.Banner\"\n},\n\"hcNumbers\": {\n\"title\": \"IEnumerable<HouseNumber>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"description\": \"HC Numbers for the committee business\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeBusinessSummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Id of committee business\",\n\"format\": \"int32\"\n},\n\"title\": {\n\"type\": \"string\",\n\"description\": \"Title of committee business\",\n\"nullable\": true\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Business.CommitteeBusinessType\"\n},\n\"openDate\": {\n\"type\": \"string\",\n\"description\": \"Date the business started\",\n\"format\": \"date-time\"\n},\n\"closeDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date the business ended\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"latestReport\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationSummary\"\n},\n\"openSubmissionPeriods\": {\n\"title\": \"IEnumerable<SubmissionPeriodSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodSummary\"\n},\n\"description\": \"Currently open submission periods\",\n\"nullable\": true\n},\n\"closedSubmissionPeriods\": {\n\"title\": \"IEnumerable<SubmissionPeriodSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodSummary\"\n},\n\"description\": \"Closed submission periods\",\n\"nullable\": true\n},\n\"nextOralEvidenceSession\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Activity.ActivitySummary\"\n},\n\"contact\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContactInformation\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"contact\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContactInformation\"\n},\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the committee\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The current name of the committee\",\n\"nullable\": true\n},\n\"parentCommittee\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"subCommittees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"description\": \"Sub-committees of this committee\",\n\"nullable\": true\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n},\n\"leadHouse\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.LeadHouse\"\n},\n\"category\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeCategory\"\n},\n\"committeeTypes\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n},\n\"description\": \"List of Committee types\",\n\"nullable\": true\n},\n\"showOnWebsite\": {\n\"type\": \"boolean\",\n\"description\": \"If this committee should be shown on the website\"\n},\n\"websiteLegacyUrl\": {\n\"type\": \"string\",\n\"description\": \"The legacy website URL for the committee, if one exists.\",\n\"nullable\": true\n},\n\"websiteLegacyRedirectEnabled\": {\n\"type\": \"boolean\",\n\"description\": \"Whether automatic redirect to the legacy website has been enabled for the committee.\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"The start date of the committee\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The end date of the committee\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateCommonsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Commons\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateLordsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Lords\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"scrutinisingDepartments\": {\n\"title\": \"IEnumerable<ScrutinisingDepartment>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ScrutinisingDepartment\"\n},\n\"description\": \"All the departments the committee scrutinises\",\n\"nullable\": true\n},\n\"isLeadCommittee\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\",\n\"description\": \"Is the lead Committee, if linked to an event with multiple Committees\",\n\"nullable\": true\n},\n\"nameHistory\": {\n\"title\": \"ICollection<CommitteeName>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeName\"\n},\n\"description\": \"Previous names of this committee\",\n\"nullable\": true\n},\n\"banner\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.Banner\"\n},\n\"contentLinks\": {\n\"title\": \"IEnumerable<ContentLink>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContentLink\"\n},\n\"description\": \"Social Media accounts of this committee\",\n\"nullable\": true\n},\n\"purpose\": {\n\"type\": \"string\",\n\"description\": \"The purpose of the committee\",\n\"nullable\": true\n},\n\"previousCommittees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"description\": \"Previous committees associated with this committee\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeMeetingForBroadcasters\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the meeting event.\",\n\"format\": \"int32\"\n},\n\"title\": {\n\"type\": \"string\",\n\"description\": \"The title of the meeting event.\",\n\"nullable\": true\n},\n\"startTime\": {\n\"title\": \"Nullable<DateTimeOffset>\",\n\"type\": \"string\",\n\"description\": \"The start time of the event.\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"endTime\": {\n\"title\": \"Nullable<DateTimeOffset>\",\n\"type\": \"string\",\n\"description\": \"The end time of the event.\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"notes\": {\n\"type\": \"string\",\n\"description\": \"The notes related to the event.\",\n\"nullable\": true\n},\n\"isCommons\": {\n\"type\": \"boolean\",\n\"description\": \"Is a House of Commons event.\"\n},\n\"isLords\": {\n\"type\": \"boolean\",\n\"description\": \"Is a House of Lords event.\"\n},\n\"location\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Broadcast.MeetingLocation\"\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"description\": \"Which committees are involved in the event.\",\n\"nullable\": true\n},\n\"activities\": {\n\"title\": \"IEnumerable<ActivityForBroadcasters>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Broadcast.ActivityForBroadcasters\"\n},\n\"description\": \"The schedule of activities for the event.\",\n\"nullable\": true\n},\n\"eventType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventTypeDetails\"\n},\n\"cancelledDate\": {\n\"title\": \"Nullable<DateTimeOffset>\",\n\"type\": \"string\",\n\"description\": \"The date the meeting was cancelled, null if not cancelled.\",\n\"format\": \"date-time\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeMember\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"personId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"photoUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberInfo\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.MemberInfo\"\n},\n\"isLayMember\": {\n\"type\": \"boolean\"\n},\n\"roles\": {\n\"title\": \"IEnumerable<CommitteeMemberRole>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.CommitteeMemberRole\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.CommitteeSummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"contact\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContactInformation\"\n},\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the committee\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The current name of the committee\",\n\"nullable\": true\n},\n\"parentCommittee\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"subCommittees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"description\": \"Sub-committees of this committee\",\n\"nullable\": true\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n},\n\"leadHouse\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.LeadHouse\"\n},\n\"category\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeCategory\"\n},\n\"committeeTypes\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n},\n\"description\": \"List of Committee types\",\n\"nullable\": true\n},\n\"showOnWebsite\": {\n\"type\": \"boolean\",\n\"description\": \"If this committee should be shown on the website\"\n},\n\"websiteLegacyUrl\": {\n\"type\": \"string\",\n\"description\": \"The legacy website URL for the committee, if one exists.\",\n\"nullable\": true\n},\n\"websiteLegacyRedirectEnabled\": {\n\"type\": \"boolean\",\n\"description\": \"Whether automatic redirect to the legacy website has been enabled for the committee.\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"The start date of the committee\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The end date of the committee\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateCommonsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Commons\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateLordsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Lords\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"scrutinisingDepartments\": {\n\"title\": \"IEnumerable<ScrutinisingDepartment>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ScrutinisingDepartment\"\n},\n\"description\": \"All the departments the committee scrutinises\",\n\"nullable\": true\n},\n\"isLeadCommittee\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\",\n\"description\": \"Is the lead Committee, if linked to an event with multiple Committees\",\n\"nullable\": true\n},\n\"nameHistory\": {\n\"title\": \"ICollection<CommitteeName>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeName\"\n},\n\"description\": \"Previous names of this committee\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Activity.ActivitySummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the activity\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The name of the activity\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"The datetime the activity starts\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The datetime the activity ends\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"eventId\": {\n\"type\": \"integer\",\n\"description\": \"The id of the event this activity is attached to\",\n\"format\": \"int32\"\n},\n\"isPrivate\": {\n\"type\": \"boolean\",\n\"description\": \"Whether an activity is private or public\"\n},\n\"activityType\": {\n\"type\": \"string\",\n\"description\": \"Type of activity\",\n\"nullable\": true\n},\n\"attendees\": {\n\"title\": \"IEnumerable<ActivityPerson>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.ActivityPerson\"\n},\n\"description\": \"A list of attendees of the activity\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Activity.RemoteAttendance\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.RemoteAttendanceStatus\"\n},\n\"text\": {\n\"type\": \"string\",\n\"description\": \"The remote attendance text\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Business.CommitteeBusinessType\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Business type Id\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"Name of business type\",\n\"nullable\": true\n},\n\"isInquiry\": {\n\"type\": \"boolean\",\n\"description\": \"If the business is an inquiry\"\n},\n\"description\": {\n\"type\": \"string\",\n\"description\": \"Description of the business\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Committee.CommitteeCategory\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Committee category Id\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"Committee category Name\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Committee.CommitteeName\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"committeeId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Committee.CommitteeType\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Committee type Id\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"Committee type name\",\n\"nullable\": true\n},\n\"committeeCategory\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeCategory\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Committee.LeadHouse\": {\n\"type\": \"object\",\n\"properties\": {\n\"isCommons\": {\n\"type\": \"boolean\"\n},\n\"isLords\": {\n\"type\": \"boolean\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Committee.MemberCommittee\": {\n\"type\": \"object\",\n\"properties\": {\n\"contact\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.ContactInformation\"\n},\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the committee\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The current name of the committee\",\n\"nullable\": true\n},\n\"parentCommittee\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"subCommittees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"description\": \"Sub-committees of this committee\",\n\"nullable\": true\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n},\n\"leadHouse\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.LeadHouse\"\n},\n\"category\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeCategory\"\n},\n\"committeeTypes\": {\n\"title\": \"IEnumerable<CommitteeType>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeType\"\n},\n\"description\": \"List of Committee types\",\n\"nullable\": true\n},\n\"showOnWebsite\": {\n\"type\": \"boolean\",\n\"description\": \"If this committee should be shown on the website\"\n},\n\"websiteLegacyUrl\": {\n\"type\": \"string\",\n\"description\": \"The legacy website URL for the committee, if one exists.\",\n\"nullable\": true\n},\n\"websiteLegacyRedirectEnabled\": {\n\"type\": \"boolean\",\n\"description\": \"Whether automatic redirect to the legacy website has been enabled for the committee.\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"The start date of the committee\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The end date of the committee\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateCommonsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Commons\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"dateLordsAppointed\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date the committee was appointed by the House of Lords\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"scrutinisingDepartments\": {\n\"title\": \"IEnumerable<ScrutinisingDepartment>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ScrutinisingDepartment\"\n},\n\"description\": \"All the departments the committee scrutinises\",\n\"nullable\": true\n},\n\"isLeadCommittee\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\",\n\"description\": \"Is the lead Committee, if linked to an event with multiple Committees\",\n\"nullable\": true\n},\n\"nameHistory\": {\n\"title\": \"ICollection<CommitteeName>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.CommitteeName\"\n},\n\"description\": \"Previous names of this committee\",\n\"nullable\": true\n},\n\"roles\": {\n\"title\": \"IEnumerable<CommitteeMemberRole>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.CommitteeMemberRole\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Department\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"address\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.Address\"\n},\n\"otherAddress\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"phone\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"email\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Document.Document\": {\n\"type\": \"object\",\n\"properties\": {\n\"documentId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"files\": {\n\"title\": \"IEnumerable<DocumentFile>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.DocumentFile\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Document.DocumentFile\": {\n\"type\": \"object\",\n\"properties\": {\n\"fileName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fileSize\": {\n\"title\": \"Nullable<Int64>\",\n\"type\": \"integer\",\n\"format\": \"int64\",\n\"nullable\": true\n},\n\"fileDataFormat\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n},\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Events.EventSummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"cancelledDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"locationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"location\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"eventType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventTypeDetails\"\n},\n\"eventSource\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"childEvents\": {\n\"title\": \"IEnumerable<EventSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventSummary\"\n},\n\"nullable\": true\n},\n\"nextActivity\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"activities\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Events.EventTypeDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"isVisit\": {\n\"type\": \"boolean\"\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.ActivityPerson\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"personId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"photoUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberInfo\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.MemberInfo\"\n},\n\"organisations\": {\n\"title\": \"IEnumerable<Organisation>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.Organisation\"\n},\n\"nullable\": true\n},\n\"submitterType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.SubmitterType\"\n},\n\"additionalContext\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"displayOrder\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.Attendee\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"personId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"photoUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberInfo\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.MemberInfo\"\n},\n\"layMember\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\",\n\"nullable\": true\n},\n\"remoteAttendance\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Activity.RemoteAttendance\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.CommitteeMemberRole\": {\n\"type\": \"object\",\n\"properties\": {\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"role\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Role\"\n},\n\"exOfficio\": {\n\"type\": \"boolean\"\n},\n\"alternate\": {\n\"type\": \"boolean\"\n},\n\"coOpted\": {\n\"type\": \"boolean\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.MemberInfo\": {\n\"type\": \"object\",\n\"properties\": {\n\"memberFrom\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"party\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"partyColour\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"mnisId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"isChair\": {\n\"type\": \"boolean\"\n},\n\"listAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"displayAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fullTitle\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"addressAs\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"house\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.House\"\n},\n\"isCurrent\": {\n\"title\": \"Nullable<Boolean>\",\n\"type\": \"boolean\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.Role\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the role\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The role name\",\n\"nullable\": true\n},\n\"roleType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.RoleType\"\n},\n\"isChair\": {\n\"type\": \"boolean\",\n\"description\": \"Is the role a chair\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.RoleType\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the role type\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The Name of the role type\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.People.Submitter\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"personId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"photoUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberInfo\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.MemberInfo\"\n},\n\"organisations\": {\n\"title\": \"IEnumerable<Organisation>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.Organisation\"\n},\n\"nullable\": true\n},\n\"submitterType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.SubmitterType\"\n},\n\"additionalContext\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Publication.GovernmentResponse\": {\n\"type\": \"object\",\n\"properties\": {\n\"publication\": {\n\"title\": \"IEnumerable<PublicationSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationSummary\"\n},\n\"description\": \"Publication for government response\",\n\"nullable\": true\n},\n\"responseDeadline\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Deadline for response\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"responseExcepted\": {\n\"type\": \"boolean\",\n\"description\": \"If the response is expected\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Publication.PublicationSummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"description\": {\n\"type\": \"string\",\n\"description\": \"Description of publication\",\n\"nullable\": true\n},\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the publication\",\n\"format\": \"int32\"\n},\n\"publicationStartDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date when publication can be published from\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"governmentResponses\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.GovernmentResponse\"\n},\n\"publicationEndDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date when publication can be published until\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"documents\": {\n\"title\": \"IEnumerable<Document>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"description\": \"Documents associated with the publication\",\n\"nullable\": true\n},\n\"hcNumber\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"hlPaper\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n},\n\"responseToPublicationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"description\": \"If publication is in response to another publication, that publication's id\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"additionalContentUrl\": {\n\"type\": \"string\",\n\"description\": \"Url to additional content related to the publication\",\n\"nullable\": true\n},\n\"additionalContentUrl2\": {\n\"type\": \"string\",\n\"description\": \"Url2 for additional content related to the publication\",\n\"nullable\": true\n},\n\"respondingDepartment\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Department\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Publication.PublicationType\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the publication type\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The name of the publication type\",\n\"nullable\": true\n},\n\"description\": {\n\"type\": \"string\",\n\"description\": \"The description of the publication type\",\n\"nullable\": true\n},\n\"governmentCanRespond\": {\n\"type\": \"boolean\",\n\"description\": \"Indicates that the government can respond to this type of publication\"\n},\n\"canBeResponse\": {\n\"type\": \"boolean\",\n\"description\": \"Indicates that publications of this type can be responses to other publications.\"\n},\n\"iconKey\": {\n\"type\": \"string\",\n\"description\": \"Icon type to be rendered on the website for this type of publication\",\n\"nullable\": true\n},\n\"pluralVersion\": {\n\"type\": \"string\",\n\"description\": \"Plural form of the publication type name\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.Address\": {\n\"type\": \"object\",\n\"properties\": {\n\"addressLine1\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"addressLine2\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"addressLine3\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"addressLine4\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"addressLine5\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"postcode\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.Banner\": {\n\"type\": \"object\",\n\"properties\": {\n\"desktopBanner\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.File\"\n},\n\"mobileBanner\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.File\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.ContactInformation\": {\n\"type\": \"object\",\n\"properties\": {\n\"email\": {\n\"type\": \"string\",\n\"description\": \"Current contact email\",\n\"nullable\": true\n},\n\"phone\": {\n\"type\": \"string\",\n\"description\": \"Telephone number\",\n\"nullable\": true\n},\n\"address\": {\n\"type\": \"string\",\n\"description\": \"Postal address\",\n\"nullable\": true\n},\n\"contactDisclaimer\": {\n\"type\": \"string\",\n\"description\": \"Disclaimer for contact information\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.ContentLink\": {\n\"type\": \"object\",\n\"properties\": {\n\"title\": {\n\"type\": \"string\",\n\"description\": \"Title of the content link\",\n\"nullable\": true\n},\n\"url\": {\n\"type\": \"string\",\n\"description\": \"Url of the content link\",\n\"nullable\": true\n},\n\"description\": {\n\"type\": \"string\",\n\"description\": \"Description of the content link\",\n\"nullable\": true\n},\n\"displayOrder\": {\n\"type\": \"integer\",\n\"description\": \"Order to display the content link\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.File\": {\n\"type\": \"object\",\n\"properties\": {\n\"fileName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fileData\": {\n\"type\": \"string\",\n\"format\": \"byte\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.HouseNumber\": {\n\"type\": \"object\",\n\"properties\": {\n\"number\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"sessionId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"sessionDescription\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Shared.Links\": {\n\"type\": \"object\",\n\"properties\": {\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.HybridBillPetition\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"publicationDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"witnesses\": {\n\"title\": \"IEnumerable<Submitter>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Submitter\"\n},\n\"nullable\": true\n},\n\"document\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"submissionId\": {\n\"type\": \"string\",\n\"format\": \"uuid\"\n},\n\"internalReference\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"createdDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"committeeBusiness\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"hcNumber\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"outcome\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.HybridBillPetitionOutcome\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.HybridBillPetitionOutcome\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"outcomeText\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.OralEvidence\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"publicationDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"witnesses\": {\n\"title\": \"IEnumerable<Submitter>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Submitter\"\n},\n\"nullable\": true\n},\n\"document\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"activityId\": {\n\"type\": \"integer\",\n\"description\": \"The id of the activity\",\n\"format\": \"int32\"\n},\n\"meetingDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"The date of the meeting\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"activityStartDate\": {\n\"type\": \"string\",\n\"description\": \"The datetime the activity starts\",\n\"format\": \"date-time\"\n},\n\"legacyHtmlUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"legacyPdfUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"description\": \"Associated committee businesses\",\n\"nullable\": true\n},\n\"hcNumbers\": {\n\"title\": \"IEnumerable<HouseNumber>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.Organisation\": {\n\"type\": \"object\",\n\"properties\": {\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"role\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"idmsId\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"cisId\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.SubmissionPeriodSummary\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Id of the submission period\",\n\"format\": \"int32\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"Submission period start date\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Submission period end date\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"submissionType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.SubmissionType\"\n},\n\"isPromoted\": {\n\"type\": \"boolean\",\n\"description\": \"Whether the submission period should be promoted or not.\"\n},\n\"statusMessage\": {\n\"type\": \"string\",\n\"description\": \"The status message of the submission period (if applicable).\",\n\"nullable\": true\n},\n\"allowSubmissionsPastEndDate\": {\n\"type\": \"boolean\",\n\"description\": \"Whether submissions are allowed past the deadline if the form is accessed via direct link.\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"defaultForSubmissionPeriod\": {\n\"type\": \"boolean\"\n},\n\"document\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"submissionPeriodTemplateRoutes\": {\n\"title\": \"IEnumerable<SubmissionPeriodTemplateRouteDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateRouteDetails\"\n},\n\"nullable\": true\n},\n\"submissionPeriodTemplateSubmitterTypes\": {\n\"title\": \"IEnumerable<SubmissionPeriodTemplateSubmitterTypeDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateSubmitterTypeDetails\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateRouteDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"submissionRoute\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateSubmitterTypeDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"submitterType\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Common.Submission.WrittenEvidence\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"publicationDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"witnesses\": {\n\"title\": \"IEnumerable<Submitter>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Submitter\"\n},\n\"nullable\": true\n},\n\"document\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"submissionId\": {\n\"type\": \"string\",\n\"format\": \"uuid\"\n},\n\"internalReference\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committeeBusiness\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"hcNumber\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"legacyHtmlUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"legacyPdfUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"anonymous\": {\n\"type\": \"boolean\",\n\"description\": \"If the Written Evidence is anonymous and that no submitter information is published\"\n},\n\"anonymousWitnessText\": {\n\"type\": \"string\",\n\"description\": \"Text to display for anonymous witnesses\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Country\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"isoCode\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"text\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"displayOrder\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.DocumentFileDetail\": {\n\"type\": \"object\",\n\"properties\": {\n\"fileName\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"fileSize\": {\n\"title\": \"Nullable<Int64>\",\n\"type\": \"integer\",\n\"format\": \"int64\",\n\"nullable\": true\n},\n\"fileDataFormat\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.FileDataFormat\"\n},\n\"url\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"data\": {\n\"type\": \"string\",\n\"format\": \"byte\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.EventActivities\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"cancelledDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"locationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"location\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"eventType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventTypeDetails\"\n},\n\"eventSource\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"childEvents\": {\n\"title\": \"IEnumerable<EventSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventSummary\"\n},\n\"nullable\": true\n},\n\"nextActivity\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"activities\": {\n\"title\": \"IEnumerable<ActivitySummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Activity.ActivitySummary\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.EventAttendanceDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"cancelledDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"locationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"location\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"eventType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventTypeDetails\"\n},\n\"eventSource\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"childEvents\": {\n\"title\": \"IEnumerable<EventSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventSummary\"\n},\n\"nullable\": true\n},\n\"nextActivity\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"activities\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"nullable\": true\n},\n\"membersAttended\": {\n\"title\": \"IEnumerable<Attendee>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Attendee\"\n},\n\"nullable\": true\n},\n\"othersAttended\": {\n\"title\": \"IEnumerable<Attendee>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.Attendee\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.EventDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"startDate\": {\n\"type\": \"string\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"cancelledDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"locationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"location\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"eventType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventTypeDetails\"\n},\n\"eventSource\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"committees\": {\n\"title\": \"IEnumerable<CommitteeSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n},\n\"nullable\": true\n},\n\"committeeBusinesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"nullable\": true\n},\n\"childEvents\": {\n\"title\": \"IEnumerable<EventSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Events.EventSummary\"\n},\n\"nullable\": true\n},\n\"nextActivity\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"activities\": {\n\"title\": \"IEnumerable<ActivityDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.ActivityDetails\"\n},\n\"nullable\": true\n},\n\"primaryDescription\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"secondaryDescription\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"parliamentTvUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.MemberFullMemberships\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"personId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"name\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"photoUrl\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"memberInfo\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.People.MemberInfo\"\n},\n\"committees\": {\n\"title\": \"IEnumerable<MemberCommittee>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Committee.MemberCommittee\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.MessagingBannerDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"location\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"content\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"displayType\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.Publication\": {\n\"type\": \"object\",\n\"properties\": {\n\"description\": {\n\"type\": \"string\",\n\"description\": \"Description of publication\",\n\"nullable\": true\n},\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"The id of the publication\",\n\"format\": \"int32\"\n},\n\"publicationStartDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date when publication can be published from\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"governmentResponses\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.GovernmentResponse\"\n},\n\"publicationEndDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Date when publication can be published until\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"documents\": {\n\"title\": \"IEnumerable<Document>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Document.Document\"\n},\n\"description\": \"Documents associated with the publication\",\n\"nullable\": true\n},\n\"hcNumber\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"hlPaper\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Shared.HouseNumber\"\n},\n\"type\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n},\n\"responseToPublicationId\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"description\": \"If publication is in response to another publication, that publication's id\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"additionalContentUrl\": {\n\"type\": \"string\",\n\"description\": \"Url to additional content related to the publication\",\n\"nullable\": true\n},\n\"additionalContentUrl2\": {\n\"type\": \"string\",\n\"description\": \"Url2 for additional content related to the publication\",\n\"nullable\": true\n},\n\"respondingDepartment\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Department\"\n},\n\"businesses\": {\n\"title\": \"IEnumerable<CommitteeBusinessSummary>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"description\": \"Committee business associated with the publication\",\n\"nullable\": true\n},\n\"committee\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeSummary\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.PublicationGroup\": {\n\"type\": \"object\",\n\"properties\": {\n\"total\": {\n\"type\": \"integer\",\n\"format\": \"int32\"\n},\n\"publicationType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Publication.PublicationType\"\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.ScrutinisingDepartment\": {\n\"type\": \"object\",\n\"properties\": {\n\"departmentId\": {\n\"type\": \"integer\",\n\"description\": \"The Id of the department which this committee scrutinises\",\n\"format\": \"int32\"\n},\n\"name\": {\n\"type\": \"string\",\n\"description\": \"The name of the department which this committee scrutinises\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Common.Responses.SubmissionPeriodDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"id\": {\n\"type\": \"integer\",\n\"description\": \"Id of the submission period\",\n\"format\": \"int32\"\n},\n\"startDate\": {\n\"type\": \"string\",\n\"description\": \"Submission period start date\",\n\"format\": \"date-time\"\n},\n\"endDate\": {\n\"title\": \"Nullable<DateTime>\",\n\"type\": \"string\",\n\"description\": \"Submission period end date\",\n\"format\": \"date-time\",\n\"nullable\": true\n},\n\"submissionType\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Enums.SubmissionType\"\n},\n\"isPromoted\": {\n\"type\": \"boolean\",\n\"description\": \"Whether the submission period should be promoted or not.\"\n},\n\"statusMessage\": {\n\"type\": \"string\",\n\"description\": \"The status message of the submission period (if applicable).\",\n\"nullable\": true\n},\n\"allowSubmissionsPastEndDate\": {\n\"type\": \"boolean\",\n\"description\": \"Whether submissions are allowed past the deadline if the form is accessed via direct link.\"\n},\n\"committeeBusiness\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.CommitteeBusinessSummary\"\n},\n\"description\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"detail\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"submissionPeriodTemplates\": {\n\"title\": \"IEnumerable<SubmissionPeriodTemplateDetails>\",\n\"type\": \"array\",\n\"items\": {\n\"$ref\": \"#/components/schemas/Committees.Common.Responses.Common.Submission.SubmissionPeriodTemplateDetails\"\n},\n\"nullable\": true\n}\n},\n\"additionalProperties\": false\n},\n\"Committees.Services.Domain.BannerLocation\": {\n\"enum\": [\n\"HomePage\",\n\"FindACommitteePage\",\n\"CommonsCommitteeDetailsPage\",\n\"LordsCommitteeDetailsPage\",\n\"JointCommitteeDetailsPage\",\n\"FindAnInquiryPage\",\n\"FindAPublicationPage\",\n\"FormerCommitteesSearchPage\"\n],\n\"type\": \"string\"\n},\n\"Microsoft.AspNetCore.Mvc.ProblemDetails\": {\n\"type\": \"object\",\n\"properties\": {\n\"type\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"title\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"status\": {\n\"title\": \"Nullable<Int32>\",\n\"type\": \"integer\",\n\"format\": \"int32\",\n\"nullable\": true\n},\n\"detail\": {\n\"type\": \"string\",\n\"nullable\": true\n},\n\"instance\": {\n\"type\": \"string\",\n\"nullable\": true\n}\n},\n\"additionalProperties\": {}\n}\n}\n}\n}",
        "auth": {
          "type": "none"
        }
      }
    ],
    "sparqlEndpoints": [],
    "mcpServers": []
  }
}