action parliament_get_api_v1_bill_types { label: "Returns a list of Bill types." provider: parliament method: GET path: "/api/v1/BillTypes" encoding: json input: { type: "object" properties: { Category: { type: "string" enum: ["Public", "Private", "Hybrid"] } Skip: { type: "integer" format: "int32" } Take: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { items: { type: "array" items: { type: "object" properties: { category: { type: "string" enum: ["Public", "Private", "Hybrid"] } description: { type: "string" } id: { type: "integer" format: "int32" } name: { type: "string" } } additionalProperties: false } } itemsPerPage: { type: "integer" format: "int32" } totalResults: { type: "integer" format: "int32" } } additionalProperties: false } }