addedInput schema / properties / from_date
Added value: +{
+ "anyOf": [
+ {
+ "format": "date",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Start date (YYYY-MM-DD)."
+}
addedInput schema / properties / house
Added value: +{
+ "default": "Commons",
+ "description": "Which house to search.",
+ "enum": [
+ "Commons",
+ "Lords"
+ ],
+ "type": "string"
+}
addedInput schema / properties / limit
Added value: +{
+ "default": 25,
+ "description": "Maximum divisions to return. Default 25 (Commons API max-per-page).",
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / member_id
Added value: +{
+ "anyOf": [
+ {
+ "minimum": 1,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Filter to divisions where this member voted. Get the member ID from parliament_find_member."
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Number of divisions to skip before this page. Default 0. Re-call with offset=offset+returned while has_more is true.",
+ "maximum": 2000,
+ "minimum": 0,
+ "type": "integer"
+}
removedInput schema / properties / params
Removed value: -{
- "additionalProperties": false,
- "description": "DivisionSearchInput.",
- "properties": {
- "from_date": {
- "anyOf": [
- {
- "format": "date",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Start date (YYYY-MM-DD)."
- },
- "house": {
- "default": "Commons",
- "description": "Which house to search.",
- "enum": [
- "Commons",
- "Lords"
- ],
- "type": "string"
- },
- "limit": {
- "default": 25,
- "description": "Maximum divisions to return. Default 25 (Commons API max-per-page).",
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "member_id": {
- "anyOf": [
- {
- "minimum": 1,
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Filter to divisions where this member voted. Get the member ID from parliament_find_member."
- },
- "offset": {
- "default": 0,
- "description": "Number of divisions to skip before this page. Default 0. Re-call with offset=offset+returned while has_more is true.",
- "maximum": 2000,
- "minimum": 0,
- "type": "integer"
- },
- "query": {
- "anyOf": [
- {
- "maxLength": 500,
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Search term for division titles, e.g. 'Rwanda' or 'Online Safety Bill'. Omit to browse recent divisions."
- },
- "to_date": {
- "anyOf": [
- {
- "format": "date",
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "End date (YYYY-MM-DD)."
- }
- },
- "type": "object"
-}
addedInput schema / properties / query
Added value: +{
+ "anyOf": [
+ {
+ "maxLength": 500,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Search term for division titles, e.g. 'Rwanda' or 'Online Safety Bill'. Omit to browse recent divisions."
+}
addedInput schema / properties / to_date
Added value: +{
+ "anyOf": [
+ {
+ "format": "date",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "End date (YYYY-MM-DD)."
+}
removedInput schema / required
Removed value: -[
- "params"
-]