action contribly_get_contribution_refinements { label: "List contribution refinement options" description: "Given a contribution list query determine the available filter options. Can be used to generate the UI to refinement a filter." provider: contribly method: GET path: "/contribution-refinements" encoding: json input: { type: "object" properties: { assignment: { type: "string" } country: { type: "string" } createdAfter: { type: "string" format: "date-time" } createdBefore: { type: "string" format: "date-time" } geohash: { type: "string" } hasLocation: { type: "boolean" } latLong: { type: "string" } mediaType: { type: "string" } ownedBy: { type: "string" } q: { type: "string" } radius: { type: "number" format: "double" } refinementSize: { type: "number" } refinements: { type: "string" } urlWords: { type: "string" } user: { type: "string" } } additionalProperties: false } output: { type: "object" } }