action globalwinescore_list_historical_gws { label: "List all historical GWS" description: "Returns all available GWS" provider: globalwinescore method: GET path: "/globalwinescores/" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } color: { type: "string" enum: ["red", "white", "pink"] } is_primeurs: { type: "boolean" } limit: { type: "integer" } lwin: { type: "string" } lwin_11: { type: "string" } offset: { type: "integer" } ordering: { type: "string" enum: ["date", "-date", "score", "-score"] } vintage: { type: "string" } wine_id: { type: "array" items: { type: "integer" } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }