action refugerestrooms_get_v1_restrooms_by_date { label: "getV1RestroomsByDate" description: "Search for restroom records updated or created on or after a given date" provider: refugerestrooms method: GET path: "/v1/restrooms/by_date" encoding: json input: { type: "object" properties: { ada: { type: "string" } day: { type: "string" } month: { type: "string" } offset: { type: "string" } page: { type: "string" } per_page: { type: "string" } unisex: { type: "string" } updated: { type: "string" } year: { type: "string" } } required: ["day", "month", "year"] additionalProperties: false } output: { type: "object" additionalProperties: true } }