action autodealerdata_get_region_market_share_get_region_market_share_get { label: "Market share of all brands in region" description: "Market share of a all brands in a given region by number of vehicles sold over the last 45 days." provider: autodealerdata method: GET path: "/getRegionMarketShare" encoding: json input: { type: "object" properties: { jwt: { type: "string" } regionName: { type: "string" } } required: ["jwt"] additionalProperties: false } output: { type: "object" properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "object" } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }