action autodealerdata_days_supply_days_supply_get { label: "Days worth of supply left on dealer lots" description: "Average, median, standard deviation, population variance, and whole region average of the \ndays of supply left 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, especially when dealers are out of \na given model. \n\nThe available brand and region names can be retrieved from their respective endpoints." provider: autodealerdata method: GET path: "/daysSupply" 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" } } } }