action contribly_get_change_log { label: "Recent changes" description: "The Contribly change log." provider: contribly method: GET path: "/change-log" encoding: json output: { type: "array" items: { type: "object" required: ["title", "date"] properties: { date: { type: "string" format: "date-time" } description: { type: "string" } title: { type: "string" } } } } }