action parliament_get_api_v1_stages { label: "Returns a list of Bill stages." provider: parliament method: GET path: "/api/v1/Stages" encoding: json input: { type: "object" properties: { Skip: { type: "integer" format: "int32" } Take: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { items: { type: "array" items: { type: "object" properties: { house: { type: "string" enum: ["All", "Commons", "Lords", "Unassigned"] } id: { type: "integer" format: "int32" } name: { type: "string" } } additionalProperties: false } } itemsPerPage: { type: "integer" format: "int32" } totalResults: { type: "integer" format: "int32" } } additionalProperties: false } }