action globalwinescore_get_globalwinescores_latest { label: "List all latest GWS" description: "Returns the latest GWS available per wine/vintage." provider: globalwinescore method: GET path: "/globalwinescores/latest/" 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 } }