action autodealerdata_get_model_used_dist_model_year_dist_get { label: "Used market share of model year by model" description: "Market share of used vehicles over the last 45 days by model and year. All values are relative to vehicles of the same model.\nFor example: a percentOfMarket value of 25, year of 2017, and modelName of Camry means that 25% of used Camrys on the market \nin the given region over the last 45 days were from the 2017 model year." provider: autodealerdata method: GET path: "/modelYearDist" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } modelName: { type: "string" } regionName: { type: "string" } } required: ["brandName", "jwt", "modelName"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "array" items: { type: "object" required: ["percentOfMarket", "modelName", "year", "brandName"] properties: { brandName: { type: "string" } modelName: { type: "string" } percentOfMarket: { type: "number" } year: { type: "integer" } } } } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }