action autodealerdata_days_to_sell_days_to_sell_get { label: "Days a vehicle takes to sell" description: "Average, median, standard deviation, population variance, and whole region average of the \nnumber of days a vehicle spends on dealer lots for a given brand and region. The average, median, stdDev, and pVar fields are calculated on\na dealer by dealer basis while the whole region average treats the entire region like a single dealership. \nThe average field may differ from the whole region average.\n\nThe available brand and region names can be retrieved from their respective endpoints." provider: autodealerdata method: GET path: "/daysToSell" encoding: json input: { type: "object" properties: { brandName: { type: "string" } jwt: { type: "string" } regionName: { type: "string" } } required: ["brandName", "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" } } } }