removedOutput schema / description
Removed value: -"Generic wrapper for non-object return types."
addedOutput schema / properties / email
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Contact email"
+}
addedOutput schema / properties / house
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Commons, Lords, or Joint"
+}
addedOutput schema / properties / id
Added value: +{
+ "description": "Committee ID",
+ "type": "integer"
+}
addedOutput schema / properties / members
Added value: +{
+ "description": "Current committee members",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Member display name",
+ "type": "string"
+ },
+ "party": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Political party"
+ },
+ "role": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Role on the committee (e.g. 'Chair')"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedOutput schema / properties / name
Added value: +{
+ "description": "Committee name",
+ "type": "string"
+}
addedOutput schema / properties / phone
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Contact phone number"
+}
removedOutput schema / properties / result
Removed value: -{
- "type": "string"
-}
addedOutput schema / properties / url
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Parliament URL for this committee"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "id",
+ "name"
+]
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true