action youneedabudget_get_budget_month { label: "Single budget month" description: "Returns a single budget month" provider: youneedabudget method: GET path: "/budgets/{budget_id}/months/{month}" encoding: json input: { type: "object" properties: { budget_id: { type: "string" } month: { type: "string" format: "date" } } required: ["budget_id", "month"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["month"] properties: { month: { type: "object" } } } } } }