action parliament_get_news_articles { label: "Returns a list of news articles for a Bill." provider: parliament method: GET path: "/api/v1/Bills/{billId}/NewsArticles" encoding: json input: { type: "object" properties: { Skip: { type: "integer" format: "int32" } Take: { type: "integer" format: "int32" } billId: { type: "integer" format: "int32" } } required: ["billId"] additionalProperties: false } output: { type: "object" properties: { items: { type: "array" items: { type: "object" properties: { content: { type: "string" } displayDate: { type: "string" format: "date-time" } id: { type: "integer" format: "int32" } title: { type: "string" } } additionalProperties: false } } itemsPerPage: { type: "integer" format: "int32" } totalResults: { type: "integer" format: "int32" } } additionalProperties: false } }